Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit d185f75

Browse files
committed
Use AppVeyor
1 parent 72c29f4 commit d185f75

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
environment:
2+
matrix:
3+
- FEATURES: ""
4+
- FEATURES: "unstable"
5+
6+
platform:
7+
- i686-pc-windows-gnu
8+
- i686-pc-windows-msvc
9+
- x86_64-pc-windows-gnu
10+
- x86_64-pc-windows-msvc
11+
12+
install:
13+
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:PLATFORM}.exe"
14+
- rust-nightly-%PLATFORM%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
15+
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
16+
- rustc -V
17+
- cargo -V
18+
19+
build_script:
20+
- cargo build --verbose --features "%FEATURES%"
21+
22+
test_script:
23+
- cargo test --verbose --features "%FEATURES%"

0 commit comments

Comments
 (0)