Skip to content

Commit dc99237

Browse files
committed
Upgrade to Node 22
1 parent 27fa082 commit dc99237

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/provision-linux.sh

+16-16
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@ set -ex
66
pushd /tmp
77

88
# 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
1111
sudo apt-get install --yes nodejs
1212
rm install-node.sh
1313

1414
# Install DFINITY SDK.
1515
wget --output-document install-dfx.sh "https://raw.githubusercontent.com/dfinity/sdk/master/public/install-dfxvm.sh"
1616
DFX_VERSION=${DFX_VERSION:=0.24.3} DFXVM_INIT_YES=true bash install-dfx.sh
1717
rm install-dfx.sh
18-
echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH
18+
echo "$HOME/.local/share/dfx/bin" >>$GITHUB_PATH
1919
source "$HOME/.local/share/dfx/env"
2020
dfx cache install
2121
# check the current ic-commit found in the main branch, check if it differs from the one in this PR branch
2222
# if so, update the dfx cache with the latest ic artifacts
2323
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
3232
fi
3333

3434
# Install ic-repl
@@ -47,14 +47,14 @@ rustup target add wasm32-unknown-unknown
4747

4848
# Install matchers
4949
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"
5151
tar -xzf "v${matchers_version}.tar.gz" --directory "$(dfx cache show)"
5252
rm "v${matchers_version}.tar.gz"
5353
mv "$(dfx cache show)/motoko-matchers-${matchers_version}" "$(dfx cache show)/motoko-matchers"
5454

5555
# Install wasmtime
5656
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"
5858
mkdir -p "${HOME}/bin"
5959
tar -xf "wasmtime-v${wasmtime_version}-x86_64-linux.tar.xz" --directory "${HOME}/bin/"
6060
mv "${HOME}/bin/wasmtime-v${wasmtime_version}-x86_64-linux/wasmtime" "${HOME}/bin/wasmtime"
@@ -66,13 +66,13 @@ cargo install --path wasi2ic --root "${HOME}"
6666

6767
# Install wasm-opt
6868
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"
7070
tar -xzf "binaryen-version_${version}-x86_64-linux.tar.gz" --directory "${HOME}/" --strip-components 1
7171
rm "binaryen-version_${version}-x86_64-linux.tar.gz"
7272

7373
# 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
7676

7777
# Exit temporary directory.
7878
popd

0 commit comments

Comments
 (0)