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

Commit c52e6e1

Browse files
committed
Use AppVeyor
1 parent 57031bc commit c52e6e1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

appveyor.yml

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

0 commit comments

Comments
 (0)