We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16084d9 commit 04d1549Copy full SHA for 04d1549
.evergreen/compile-only.sh
@@ -6,6 +6,10 @@ set -o errexit
6
rustup update $RUST_VERSION
7
8
if [ ! -z "$TARGET" ]; then
9
+ if [[ "$TARGET" = "wasm32-wasi" && "$RUST_VERSION" = "nightly" ]]; then
10
+ # renamed in newer versions of rustc
11
+ TARGET="wasm32-wasip1"
12
+ fi
13
rustup target add $TARGET --toolchain $RUST_VERSION
14
TARGET="--target=$TARGET"
15
fi
.evergreen/run-wasm-tests.sh
@@ -4,6 +4,9 @@ set -o errexit
4
5
. ~/.cargo/env
+rustup update 1.81
+rustup default 1.81
+
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
cd $(dirname $0)/../wasm-test
0 commit comments