浏览代码

Build the intrinsics example separately

Alex Crichton 7 年之前
父节点
当前提交
f0e58591b3
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      appveyor.yml
  2. 1 1
      ci/run.sh

+ 2 - 2
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%

+ 1 - 1
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