Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,10 @@ jobs:
cp $(echo $JSON | jq -r .runtimes.compressed.wasm) ./assets/polymesh_runtime_<<parameters.chain>>.compact.compressed.wasm
echo "========================================="
}
- store_artifacts:
path: ./assets/<<parameters.chain>>-srtool-digest.json
- store_artifacts:
path: ./assets/polymesh_runtime_<<parameters.chain>>.compact.compressed.wasm
- persist_to_workspace:
root: ./assets
paths:
Expand Down Expand Up @@ -804,7 +808,7 @@ workflows:
- testnet
- staging
- develop
- update-substrate-stable2503-7
- develop_v8
- build-docker-amd64-distroless:
requires:
- build
Expand All @@ -815,13 +819,15 @@ workflows:
- testnet
- staging
- develop
- develop_v8
- build-docker-ci-runtime:
requires:
- build-ci
filters:
branches:
only:
- develop
- develop_v8
- build-docker-arm64-debian:
requires:
- build-arm64
Expand All @@ -832,7 +838,7 @@ workflows:
- testnet
- staging
- develop
- update-substrate-stable2503-7
- develop_v8
- build-docker-arm64-distroless:
requires:
- build-arm64
Expand All @@ -843,6 +849,7 @@ workflows:
- testnet
- staging
- develop
- develop_v8
- build-docker-debian:
requires:
- build-docker-amd64-debian
Expand All @@ -854,7 +861,7 @@ workflows:
- testnet
- staging
- develop
- update-substrate-stable2503-7
- develop_v8
- build-docker-distroless:
requires:
- build-docker-amd64-distroless
Expand All @@ -866,6 +873,7 @@ workflows:
- testnet
- staging
- develop
- develop_v8
- publish-github-release:
requires:
- build
Expand All @@ -886,6 +894,7 @@ workflows:
- mainnet
- testnet
- staging
- develop_v8
chain: testnet
package: polymesh-runtime-testnet
runtime_dir: pallets/runtime/testnet
Expand All @@ -898,6 +907,7 @@ workflows:
- mainnet
- testnet
- staging
- develop_v8
chain: mainnet
package: polymesh-runtime-mainnet
runtime_dir: pallets/runtime/mainnet
Expand All @@ -908,6 +918,7 @@ workflows:
branches:
only:
- develop
- develop_v8
chain: develop
package: polymesh-runtime-develop
runtime_dir: pallets/runtime/develop
Expand Down
Loading