Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit 3491bc1

Browse files
authored
Merge pull request #32 from pwoolcoc/issue-24
Add CI for OSX & Windows
2 parents 7dc0250 + 10b3fe6 commit 3491bc1

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: rust
2+
os:
3+
- linux
4+
- osx
25
rust:
36
- stable
47
- beta

appveyor.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
environment:
2+
matrix:
3+
- TARGET: x86_64-pc-windows-msvc
4+
- TARGET: i686-pc-windows-msvc
5+
- TARGET: i686-pc-windows-gnu
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+
- SET PATH=%PATH%;C:\MinGW\bin
11+
- rustc -V
12+
- cargo -V
13+
14+
build: false
15+
16+
test_script:
17+
- cargo test --verbose

0 commit comments

Comments
 (0)