We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6343217 commit bd2b565Copy full SHA for bd2b565
.github/workflows/check-interface-spec-compatibility.yml
@@ -56,6 +56,14 @@ jobs:
56
curl -O "https://download.dfinity.systems/ic/$latest_sha/binaries/x86_64-linux/sandbox_launcher.gz"
57
curl -O "https://download.dfinity.systems/ic/$latest_sha/binaries/x86_64-linux/sns.gz"
58
59
+ - name: Install IC SDK
60
+ run: |
61
+ wget --output-document install-dfx.sh "https://raw.githubusercontent.com/dfinity/sdk/dfxvm-install-script/install.sh"
62
+ DFX_VERSION=${DFX_VERSION:=0.19.0} DFXVM_INIT_YES=true bash install-dfx.sh
63
+ rm install-dfx.sh
64
+ echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH
65
+ source "$HOME/.local/share/dfx/env"
66
+
67
- name: Overwrite artifacts in dfx cache
68
run: |
69
gzip -d replica.gz
0 commit comments