@@ -6,29 +6,29 @@ set -ex
6
6
pushd /tmp
7
7
8
8
# Install Node.
9
- wget --output-document install-node .sh " https://deb.nodesource.com/setup_14 .x"
10
- sudo bash install-node .sh
9
+ wget --output-document nodesource_setup .sh " https://deb.nodesource.com/setup_lts .x"
10
+ sudo bash nodesource_setup .sh
11
11
sudo apt-get install --yes nodejs
12
12
rm install-node.sh
13
13
14
14
# Install DFINITY SDK.
15
15
wget --output-document install-dfx.sh " https://raw.githubusercontent.com/dfinity/sdk/master/public/install-dfxvm.sh"
16
16
DFX_VERSION=${DFX_VERSION:= 0.24.3} DFXVM_INIT_YES=true bash install-dfx.sh
17
17
rm install-dfx.sh
18
- echo " $HOME /.local/share/dfx/bin" >> $GITHUB_PATH
18
+ echo " $HOME /.local/share/dfx/bin" >> $GITHUB_PATH
19
19
source " $HOME /.local/share/dfx/env"
20
20
dfx cache install
21
21
# check the current ic-commit found in the main branch, check if it differs from the one in this PR branch
22
22
# if so, update the dfx cache with the latest ic artifacts
23
23
if [ -f " ${GITHUB_WORKSPACE} /.ic-commit" ]; then
24
- stable_sha=$( curl https://raw.githubusercontent.com/dfinity/examples/master/.ic-commit)
25
- current_sha=$( sed < " $GITHUB_WORKSPACE /.ic-commit" ' s/#.*$//' | sed ' /^$/d' )
26
- arch=" x86_64-linux"
27
- if [ " $current_sha " != " $stable_sha " ]; then
28
- export current_sha
29
- export arch
30
- sh " $GITHUB_WORKSPACE /.github/workflows/update-dfx-cache.sh"
31
- fi
24
+ stable_sha=$( curl https://raw.githubusercontent.com/dfinity/examples/master/.ic-commit)
25
+ current_sha=$( sed < " $GITHUB_WORKSPACE /.ic-commit" ' s/#.*$//' | sed ' /^$/d' )
26
+ arch=" x86_64-linux"
27
+ if [ " $current_sha " != " $stable_sha " ]; then
28
+ export current_sha
29
+ export arch
30
+ sh " $GITHUB_WORKSPACE /.github/workflows/update-dfx-cache.sh"
31
+ fi
32
32
fi
33
33
34
34
# Install ic-repl
@@ -47,14 +47,14 @@ rustup target add wasm32-unknown-unknown
47
47
48
48
# Install matchers
49
49
matchers_version=1.2.0
50
- curl -fsSLO " https://github.com/kritzcreek/motoko-matchers/archive/refs/tags/v${matchers_version} .tar.gz"
50
+ curl -fsSLO " https://github.com/kritzcreek/motoko-matchers/archive/refs/tags/v${matchers_version} .tar.gz"
51
51
tar -xzf " v${matchers_version} .tar.gz" --directory " $( dfx cache show) "
52
52
rm " v${matchers_version} .tar.gz"
53
53
mv " $( dfx cache show) /motoko-matchers-${matchers_version} " " $( dfx cache show) /motoko-matchers"
54
54
55
55
# Install wasmtime
56
56
wasmtime_version=0.33.1
57
- curl -fsSLO " https://github.com/bytecodealliance/wasmtime/releases/download/v${wasmtime_version} /wasmtime-v${wasmtime_version} -x86_64-linux.tar.xz"
57
+ curl -fsSLO " https://github.com/bytecodealliance/wasmtime/releases/download/v${wasmtime_version} /wasmtime-v${wasmtime_version} -x86_64-linux.tar.xz"
58
58
mkdir -p " ${HOME} /bin"
59
59
tar -xf " wasmtime-v${wasmtime_version} -x86_64-linux.tar.xz" --directory " ${HOME} /bin/"
60
60
mv " ${HOME} /bin/wasmtime-v${wasmtime_version} -x86_64-linux/wasmtime" " ${HOME} /bin/wasmtime"
@@ -66,13 +66,13 @@ cargo install --path wasi2ic --root "${HOME}"
66
66
67
67
# Install wasm-opt
68
68
version=117
69
- curl -fsSLO " https://github.com/WebAssembly/binaryen/releases/download/version_117/binaryen-version_${version} -x86_64-linux.tar.gz"
69
+ curl -fsSLO " https://github.com/WebAssembly/binaryen/releases/download/version_117/binaryen-version_${version} -x86_64-linux.tar.gz"
70
70
tar -xzf " binaryen-version_${version} -x86_64-linux.tar.gz" --directory " ${HOME} /" --strip-components 1
71
71
rm " binaryen-version_${version} -x86_64-linux.tar.gz"
72
72
73
73
# Set environment variables.
74
- echo " $HOME /bin" >> $GITHUB_PATH
75
- echo " $HOME /.cargo/bin" >> $GITHUB_PATH
74
+ echo " $HOME /bin" >> $GITHUB_PATH
75
+ echo " $HOME /.cargo/bin" >> $GITHUB_PATH
76
76
77
77
# Exit temporary directory.
78
78
popd
0 commit comments