diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c89346c..0d723c5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -49,8 +49,6 @@ jobs: displayName: "Install rust wasm target" - script: cargo build --target wasm32-unknown-unknown displayName: "Build for wasm" - - script: cargo build --target wasm32-unknown-unknown --no-default-features - displayName: "Build for wasm (no default features)" variables: TOOLCHAIN: nightly diff --git a/ci/run.sh b/ci/run.sh index 37ffb87..59930b2 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -3,7 +3,7 @@ set -ex TARGET=$1 -CMD="cargo test --all --no-default-features --target $TARGET" +CMD="cargo test --all --target $TARGET" $CMD $CMD --release