From cf45d5b24a35e484f1abbb25951b380102a91596 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 26 May 2020 08:26:12 -0700 Subject: [PATCH] Pin to an older nightly to fix CI --- azure-pipelines.yml | 4 ++-- examples/raytrace-parallel/build.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 968a12fb..3bc61c67 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -76,7 +76,7 @@ jobs: steps: - template: ci/azure-install-rust.yml parameters: - toolchain: nightly + toolchain: nightly-2020-05-24 - template: ci/azure-install-node.yml - script: cargo test --target wasm32-unknown-unknown --features nightly --test wasm @@ -276,7 +276,7 @@ jobs: steps: - template: ci/azure-install-rust.yml parameters: - toolchain: nightly + toolchain: nightly-2020-05-24 - script: cargo doc --no-deps --features 'nightly serde-serialize' displayName: "Document wasm-bindgen" - script: cargo doc --no-deps --manifest-path crates/js-sys/Cargo.toml diff --git a/examples/raytrace-parallel/build.sh b/examples/raytrace-parallel/build.sh index 3fba644b..9bc57c0e 100755 --- a/examples/raytrace-parallel/build.sh +++ b/examples/raytrace-parallel/build.sh @@ -18,7 +18,7 @@ set -ex # and put it in PATH RUSTFLAGS='-C target-feature=+atomics,+bulk-memory' \ - cargo build -v --target wasm32-unknown-unknown --release -Z build-std=std,panic_abort + cargo build --target wasm32-unknown-unknown --release -Z build-std=std,panic_abort # Note the usage of `--no-modules` here which is used to create an output which # is usable from Web Workers. We notably can't use `--target bundler` since