Skip to content

Commit 6db2dae

Browse files
authored
Merge pull request #50 from OAK-Foundation/polkadot-v0.9.13
Upgrade dependences to polkadot-v0.9.13
2 parents 1355e0b + b37eec0 commit 6db2dae

12 files changed

Lines changed: 792 additions & 831 deletions

File tree

.github/workflows/check.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ jobs:
2929
run: |
3030
curl https://sh.rustup.rs -sSf | sh -s -- -y
3131
source ~/.cargo/env
32-
rustup default stable
33-
rustup update nightly
34-
rustup update stable
35-
rustup target add wasm32-unknown-unknown --toolchain nightly
3632
3733
- name: Check Build
3834
run: |
@@ -51,10 +47,7 @@ jobs:
5147
run: |
5248
curl https://sh.rustup.rs -sSf | sh -s -- -y
5349
source ~/.cargo/env
54-
rustup default stable
55-
rustup update nightly
5650
rustup update stable
57-
rustup target add wasm32-unknown-unknown --toolchain nightly
5851
rustup component add llvm-tools-preview
5952
cargo install grcov
6053
@@ -65,9 +58,9 @@ jobs:
6558
export BUILD_DUMMY_WASM_BINARY=true
6659
export LLVM_PROFILE_FILE="llvmcoveragedata-%p-%m.profraw"
6760
export WASM_TARGET_DIRECTORY=/tmp/wasm
68-
cargo +nightly build
61+
cargo build
6962
export RUSTFLAGS="-Zinstrument-coverage"
70-
rm -r target/debug
71-
cargo +nightly test --all
63+
rm -rf target/debug
64+
cargo test --all
7265
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info
7366
bash <(curl -s https://codecov.io/bash) -f lcov.info

0 commit comments

Comments
 (0)