compiler-builtins-zynq/appveyor.yml

21 lines
569 B
YAML
Raw Normal View History

2016-08-08 14:58:16 +08:00
environment:
2016-08-08 14:59:37 +08:00
matrix:
- TARGET: i686-pc-windows-msvc
- TARGET: x86_64-pc-windows-msvc
2016-08-08 14:58:16 +08:00
install:
- git submodule update --init
2016-08-28 00:37:35 +08:00
- curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe --default-host %TARGET% --default-toolchain nightly -y
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
2016-08-08 14:58:16 +08:00
- rustc -Vv
- cargo -V
build: false
test_script:
- cargo build --target %TARGET%
- cargo build --release --target %TARGET%
2016-12-12 05:54:41 +08:00
- cargo test --no-default-features --target %TARGET%
- cargo test --no-default-features --release --target %TARGET%