From 2dc76bd0849bcbe7940a0e521ca2d017e13e45f2 Mon Sep 17 00:00:00 2001 From: Jason I Date: Mon, 29 Apr 2024 09:20:05 -0700 Subject: [PATCH] chore: skip some artifacts --- .github/workflows/update-dfx-cache.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-dfx-cache.sh b/.github/workflows/update-dfx-cache.sh index 8527667dc..0dd15d9d0 100755 --- a/.github/workflows/update-dfx-cache.sh +++ b/.github/workflows/update-dfx-cache.sh @@ -16,10 +16,12 @@ curl -O "https://download.dfinity.systems/ic/$current_sha/binaries/x86_64-linux/ # Overwrite artifacts in dfx cache gzip -d replica.gz && chmod +x replica && mv replica $(dfx cache show) gzip -d canister_sandbox.gz && chmod +x canister_sandbox && mv canister_sandbox $(dfx cache show) -gzip -d ic-admin.gz && chmod +x ic-admin && mv ic-admin $(dfx cache show) -gzip -d ic-btc-adapter.gz && chmod +x ic-btc-adapter && mv ic-btc-adapter $(dfx cache show) -gzip -d ic-https-outcalls-adapter.gz && chmod +x ic-https-outcalls-adapter && mv ic-https-outcalls-adapter $(dfx cache show) -gzip -d ic-nns-init.gz && chmod +x ic-nns-init && mv ic-nns-init $(dfx cache show) gzip -d ic-starter.gz && chmod +x ic-starter && mv ic-starter $(dfx cache show) gzip -d sandbox_launcher.gz && chmod +x sandbox_launcher && mv sandbox_launcher $(dfx cache show) -gzip -d sns.gz && chmod +x sns && mv sns $(dfx cache show) \ No newline at end of file +#gzip -d ic-admin.gz && chmod +x ic-admin && mv ic-admin $(dfx cache show) +#gzip -d ic-btc-adapter.gz && chmod +x ic-btc-adapter && mv ic-btc-adapter $(dfx cache show) +#gzip -d ic-https-outcalls-adapter.gz && chmod +x ic-https-outcalls-adapter && mv ic-https-outcalls-adapter $(dfx cache show) +#gzip -d ic-nns-init.gz && chmod +x ic-nns-init && mv ic-nns-init $(dfx cache show) +#gzip -d sns.gz && chmod +x sns && mv sns $(dfx cache show) + +echo "dfx cache updated with latest ic artifacts" \ No newline at end of file