diff --git a/library/compiler-builtins/appveyor.yml b/library/compiler-builtins/appveyor.yml index 2bef109367c8..66cd96e48ea5 100644 --- a/library/compiler-builtins/appveyor.yml +++ b/library/compiler-builtins/appveyor.yml @@ -15,8 +15,8 @@ install: build: false test_script: - - cargo build --target %TARGET% - - cargo build --release --target %TARGET% + - cargo build --target %TARGET% --example intrinsics + - cargo build --release --target %TARGET% --example intrinsics - cargo test --no-default-features --features gen-tests --target %TARGET% - cargo test --no-default-features --features "gen-tests c" --target %TARGET% - cargo test --no-default-features --features gen-tests --release --target %TARGET% diff --git a/library/compiler-builtins/ci/run.sh b/library/compiler-builtins/ci/run.sh index 02b9bf11248f..0d52e7307122 100755 --- a/library/compiler-builtins/ci/run.sh +++ b/library/compiler-builtins/ci/run.sh @@ -46,7 +46,7 @@ case $1 in xargo build --features c --target $1 --example intrinsics ;; *) - cargo build --no-default-features --features c --target $1 --example intrinsics + cargo build --features c --target $1 --example intrinsics ;; esac