summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <phsym@users.noreply.github.com>2017-05-14 22:50:33 +0200
committerGitHub <noreply@github.com>2017-05-14 22:50:33 +0200
commit01f99c5a7f3031e37d83597acfe2616758d2b4a1 (patch)
tree8c3d3eac47f62c4e55a3321b833e728e59998418 /appveyor.yml
parent69d079fb5bc1abe8699ea024a7dcf588ca8762c7 (diff)
Fix coverage & run travis against all previous compatible rust versions (#49)
* Trying to fix code coverage * Added --verify to kcov args * Added libbfd-dev dependency before running kcov * Added /usr/lib to excluded patterns in kcov arguments * Trying build with an older version of rust * Trying with all rust releases Closes #48
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index fc55635..f6bea69 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,12 +1,13 @@
install:
- - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.12.0-x86_64-pc-windows-gnu.exe'
- - rust-1.12.0-x86_64-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
+ - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.17.0-x86_64-pc-windows-gnu.exe'
+ - rust-1.17.0-x86_64-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc -V
- cargo -V
build_script:
- cargo build --verbose
+ - cargo build --verbose --no-default-features
test_script:
- cargo test --verbose