From 9d84097c6942d6b42e4c4526d7e05578d848708b Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo@trentesaux.fr> Date: Thu, 7 Nov 2024 16:19:51 +0100 Subject: [PATCH] update srtool --- .gitlab-ci.yml | 2 +- docs/dev/verify-runtime-code.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a0c3e9cf0..d49a7d51c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -249,7 +249,7 @@ build_runtime: stage: build rules: - <<: *is_network_branch - image: paritytech/srtool:1.77.0-0.15.0 + image: paritytech/srtool:1.81.0-0.17.0 variables: SRTOOL_OUTPUT: $CI_PROJECT_DIR/release/srtool_output.json script: diff --git a/docs/dev/verify-runtime-code.md b/docs/dev/verify-runtime-code.md index 7785759d1..d4d34a565 100644 --- a/docs/dev/verify-runtime-code.md +++ b/docs/dev/verify-runtime-code.md @@ -6,14 +6,14 @@ When voting for a runtime upgrade, you should check that the proposed hash actua mkdir runtime/gdev/target chmod o+w runtime/gdev/target # Workaround see !239 -echo -e "[toolchain]\nchannel = \"1.77.0\"\ncomponents = [ \"rust-std\", \"rust-src\" ]" > runtime/gdev/rust-toolchain.toml +echo -e "[toolchain]\nchannel = \"1.81.0\"\ncomponents = [ \"rust-std\", \"rust-src\" ]" > runtime/gdev/rust-toolchain.toml docker run \ -i \ --rm \ -e PACKAGE=gdev-runtime \ -e RUNTIME_DIR=runtime/gdev \ -v $PWD:/build \ - paritytech/srtool:1.77.0-0.15.0 build --app --json -cM + paritytech/srtool:1.81.0-0.17.0 build --app --json -cM ``` Then, the runtime wasm bytecode is generated in this location: -- GitLab