Skip to content

Commit 4c5d992

Browse files
skunertbkchr
andauthored
Add support for relay-parent-offset. (#122)
Recently CI fails regularly on runtimes repo because try-runtime does not yet support runtimes with RP offset. Changes: - Use polkadot-sdk master (sadly stable2512 does not contain rp_offset field yet) - Fetch rp offset from runtime and add it to inherent - Simplify inherent usage --------- Co-authored-by: Bastian Köcher <git@kchr.de>
1 parent 291d29d commit 4c5d992

11 files changed

Lines changed: 6187 additions & 4595 deletions

File tree

.github/workflows/rust-checks.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
uses: arduino/setup-protoc@v1
3232
with:
3333
version: "3.6.1"
34+
- name: Install deps for build
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install -y clang llvm-dev libclang-dev
3438
- name: cargo doc
3539
run: RUSTFLAGS="-D warnings" cargo doc --locked
3640

@@ -94,6 +98,10 @@ jobs:
9498
uses: arduino/setup-protoc@v1
9599
with:
96100
version: "3.6.1"
101+
- name: Install deps for build
102+
run: |
103+
sudo apt-get update
104+
sudo apt-get install -y clang llvm-dev libclang-dev
97105
- name: Free disk space
98106
run: |
99107
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true

0 commit comments

Comments
 (0)