Skip to content

Commit 0940443

Browse files
committed
pin rustc version
1 parent 1743bcd commit 0940443

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

tunshell-client/build/install-deps-wasm.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
set -e
44

55
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
6+
rustup install 1.65.0
7+
rustup default 1.65.0
68
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

tunshell-client/build/install-deps.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ case "$OSTYPE" in
3434
;;
3535
esac
3636

37+
echo "Installing rust version 1.65.0..."
38+
rustup install 1.65.0
39+
rustup default 1.65.0
40+
3741
echo "Installing cross..."
3842
cargo install cross
3943

tunshell-server/test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ then
88
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
99
fi
1010

11+
rustup install 1.65.0
12+
rustup default 1.65.0
13+
1114
export TUNSHELL_API_PORT="3000"
1215
export TUNSHELL_RELAY_TLS_PORT="3001"
1316
export SQLITE_DB_PATH="$PWD/db.sqlite"

0 commit comments

Comments
 (0)