Skip to content

Commit a948450

Browse files
committed
Update CI pipeline with ic-wasm 0.9.3 and add candid-extractor installation
1 parent 60ec2f8 commit a948450

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build_and_tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717
name: Build and Test
1818
runs-on: ubuntu-latest
1919
steps:
20-
2120
- uses: actions/checkout@v4
22-
21+
2322
- name: Install rust toolchain
2423
uses: dtolnay/rust-toolchain@1.85.0
2524
with:
@@ -31,9 +30,15 @@ jobs:
3130

3231
- name: install ic-wasm
3332
run: |
34-
wget https://github.com/dfinity/ic-wasm/releases/download/0.8.1/ic-wasm-linux64 -O /usr/local/bin/ic-wasm
33+
wget https://github.com/dfinity/ic-wasm/releases/download/0.9.3/ic-wasm-linux64 -O /usr/local/bin/ic-wasm
3534
chmod +x /usr/local/bin/ic-wasm
3635
36+
- name: install candid-extractor
37+
run: |
38+
wget https://github.com/dfinity/cdk-rs/releases/download/candid-extractor-v0.1.4/candid-extractor-x86_64-unknown-linux-gnu.tar.gz -O /tmp/candid-extractor-x86_64-unknown-linux-gnu.tar.gz
39+
tar -xvf /tmp/candid-extractor-x86_64-unknown-linux-gnu.tar.gz -C /usr/local/bin
40+
chmod +x /usr/local/bin/candid-extractor
41+
3742
- name: check rust code style
3843
run: |
3944
just check_code
@@ -50,4 +55,3 @@ jobs:
5055
run: |
5156
sudo apt install gcc-multilib
5257
just test_i686
53-

0 commit comments

Comments
 (0)