mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +00:00
a70617124b
Closes https://github.com/paritytech/release-engineering/issues/6 Adds a new Github Workflow which on a new release being created, builds and attaches all runtimes managed in this repository in two flavours: - `dev-debug-build`: Built with the `try-runtime` feature and has logging enabled - `on-chain-release`: Built with the regular old `on-chain-release` feature The new Github Workflow could be extended in the future by the @paritytech/release-engineering team to fully automate the release process if they choose to, similar to how it is fully automated in the Fellowship repo (https://github.com/polkadot-fellows/runtimes/blob/main/.github/workflows/release.yml). The `on-chain-release` did not exist for parachains, so I added it. --- Tested on my fork: - https://github.com/liamaharon/polkadot-sdk/actions/runs/6663773523 - https://github.com/liamaharon/polkadot-sdk/releases/tag/test-6 --------- Co-authored-by: Chevdor <chevdor@users.noreply.github.com> Co-authored-by: Dónal Murray <donal.murray@parity.io>
133 lines
6.1 KiB
TOML
133 lines
6.1 KiB
TOML
[package]
|
|
name = "glutton-runtime"
|
|
version = "1.0.0"
|
|
description = "Glutton parachain runtime."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate
|
|
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
|
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false}
|
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false}
|
|
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false}
|
|
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true}
|
|
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true}
|
|
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false}
|
|
pallet-glutton = { path = "../../../../../substrate/frame/glutton", default-features = false, optional = true}
|
|
pallet-sudo = { path = "../../../../../substrate/frame/sudo", default-features = false, optional = true}
|
|
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false }
|
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false}
|
|
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false}
|
|
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false }
|
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false}
|
|
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
|
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false}
|
|
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false}
|
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false}
|
|
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false}
|
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false}
|
|
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false}
|
|
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false}
|
|
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false}
|
|
|
|
# Polkadot
|
|
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
|
|
|
# Cumulus
|
|
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
|
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
|
cumulus-primitives-aura = { path = "../../../../primitives/aura", default-features = false }
|
|
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
|
cumulus-primitives-timestamp = { path = "../../../../primitives/timestamp", default-features = false }
|
|
parachain-info = { path = "../../../pallets/parachain-info", default-features = false }
|
|
parachains-common = { path = "../../../common", default-features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../../../substrate/utils/wasm-builder" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
runtime-benchmarks = [
|
|
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-glutton/runtime-benchmarks",
|
|
"pallet-sudo?/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"parachains-common/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"cumulus-pallet-aura-ext/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-xcm/std",
|
|
"cumulus-primitives-aura/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-timestamp/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"frame-try-runtime?/std",
|
|
"pallet-aura/std",
|
|
"pallet-glutton/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"parachain-info/std",
|
|
"parachains-common/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-genesis-builder/std",
|
|
"sp-inherents/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-storage/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
try-runtime = [
|
|
"cumulus-pallet-aura-ext/try-runtime",
|
|
"cumulus-pallet-parachain-system/try-runtime",
|
|
"cumulus-pallet-xcm/try-runtime",
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-try-runtime/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-glutton/try-runtime",
|
|
"pallet-sudo/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"parachain-info/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
experimental = [ "pallet-aura/experimental" ]
|
|
|
|
# A feature that should be enabled when the runtime should be built for on-chain
|
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
|
# to make it smaller like logging for example.
|
|
on-chain-release-build = [ "sp-api/disable-logging" ]
|