Skip to content

Commit 21006b9

Browse files
committed
gzip wallet
1 parent ae35166 commit 21006b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ic-ref.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242
- name: Download cycles-wallet canister
4343
run: |
4444
wget https://github.com/dfinity/cycles-wallet/releases/download/${{ matrix.wallet-tag }}/wallet.wasm
45-
mv wallet.wasm $HOME/wallet.wasm
45+
gzip -n wallet.wasm
46+
mv wallet.wasm.gz $HOME/wallet.wasm.gz
4647
4748
- name: Download universal-canister
4849
run: |
@@ -57,7 +58,7 @@ jobs:
5758
sleep 1
5859
export IC_REF_PORT=$(dfx info replica-port)
5960
export IC_UNIVERSAL_CANISTER_PATH=$HOME/canister.wasm
60-
export IC_WALLET_CANISTER_PATH=$HOME/wallet.wasm
61+
export IC_WALLET_CANISTER_PATH=$HOME/wallet.wasm.gz
6162
cargo test --all-features -- --ignored
6263
dfx stop
6364
env:

0 commit comments

Comments
 (0)