Skip to content

Commit 8ea1601

Browse files
author
Jason I
committed
chore: simplify workflow
1 parent bd2b565 commit 8ea1601

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

.github/workflows/check-interface-spec-compatibility.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,9 @@ jobs:
5656
curl -O "https://download.dfinity.systems/ic/$latest_sha/binaries/x86_64-linux/sandbox_launcher.gz"
5757
curl -O "https://download.dfinity.systems/ic/$latest_sha/binaries/x86_64-linux/sns.gz"
5858
59-
- name: Install IC SDK
59+
- name: Provision environment
6060
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"
61+
.github/workflows/provision-linux.sh
6662
6763
- name: Overwrite artifacts in dfx cache
6864
run: |
@@ -85,10 +81,6 @@ jobs:
8581
gzip -d sns.gz
8682
mv sns $(dfx cache show)
8783
88-
- name: Skip cache install
89-
run: |
90-
export "skip_dfx_cache_install=1"
91-
9284
- name: Build and deploy all examples
9385
run: |
9486
.github/workflows/hosting-photo-storage-example.test.sh

.github/workflows/provision-linux.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ DFX_VERSION=${DFX_VERSION:=0.19.0} DFXVM_INIT_YES=true bash install-dfx.sh
1717
rm install-dfx.sh
1818
echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH
1919
source "$HOME/.local/share/dfx/env"
20-
if [[ -z "${skip_dfx_cache_install}" ]]; then
21-
echo "Skipping dfx cache install"
22-
else
23-
dfx cache install
24-
fi
20+
dfx cache install
2521

2622
# Install ic-repl
2723
version=0.1.2

0 commit comments

Comments
 (0)