Skip to content

Commit 255cde5

Browse files
author
Jorge Aparicio
authored
Merge pull request #9 from japaric/appveyor
CI: AppVeyor
2 parents b7a9d45 + 9ec6a78 commit 255cde5

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+
- TARGET: i686-pc-windows-msvc
4+
- TARGET: x86_64-pc-windows-msvc
5+
6+
install:
7+
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
8+
- rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
9+
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
10+
- rustc -Vv
11+
- cargo -V
12+
13+
build: false
14+
15+
test_script:
16+
- cargo build
17+
- cargo build --release
18+
- cargo test
19+
- cargo test --release
20+
21+
branches:
22+
only:
23+
- master

0 commit comments

Comments
 (0)