forked from MSxDOS/ntapi
-
Notifications
You must be signed in to change notification settings - Fork 4
/
appveyor.yml
34 lines (31 loc) · 997 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
image: Visual Studio 2019
environment:
matrix:
- host: x86_64-pc-windows-msvc
channel: nightly
aarch64: 1
- host: i686-pc-windows-msvc
channel: nightly
- host: x86_64-pc-windows-gnu
channel: nightly
- host: i686-pc-windows-gnu
channel: nightly
- host: x86_64-pc-windows-gnu
channel: 1.64.0
- host: i686-pc-windows-gnu
channel: 1.64.0
install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-toolchain %channel% --default-host %host%
- set CARGO_INCREMENTAL=0
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustc -vV
- cargo -vV
- if defined aarch64 (
rustup target add aarch64-pc-windows-msvc
)
build_script:
- cargo test --verbose --color always --features "func-types impl-default user"
- if defined aarch64 (
cargo test --verbose --color always --features "func-types impl-default user" --target aarch64-pc-windows-msvc --no-run
)