We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae35166 commit 21006b9Copy full SHA for 21006b9
.github/workflows/ic-ref.yml
@@ -42,7 +42,8 @@ jobs:
42
- name: Download cycles-wallet canister
43
run: |
44
wget https://github.com/dfinity/cycles-wallet/releases/download/${{ matrix.wallet-tag }}/wallet.wasm
45
- mv wallet.wasm $HOME/wallet.wasm
+ gzip -n wallet.wasm
46
+ mv wallet.wasm.gz $HOME/wallet.wasm.gz
47
48
- name: Download universal-canister
49
@@ -57,7 +58,7 @@ jobs:
57
58
sleep 1
59
export IC_REF_PORT=$(dfx info replica-port)
60
export IC_UNIVERSAL_CANISTER_PATH=$HOME/canister.wasm
- export IC_WALLET_CANISTER_PATH=$HOME/wallet.wasm
61
+ export IC_WALLET_CANISTER_PATH=$HOME/wallet.wasm.gz
62
cargo test --all-features -- --ignored
63
dfx stop
64
env:
0 commit comments