From dc6aab0ef0014d06a5884d1f8a76ff8eccdd6aa4 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Thu, 5 Sep 2019 08:32:05 -0600 Subject: [PATCH] there are no longer any default features --- azure-pipelines.yml | 2 -- ci/run.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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