Build the intrinsics example separately

master
Alex Crichton 2017-06-23 07:01:18 -07:00
parent 1b78d79bf5
commit f0e58591b3
2 changed files with 3 additions and 3 deletions

View File

@ -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%

View File

@ -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