-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (33 loc) · 987 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
os:
- linux
sudo: required
language: rust
rust:
- stable
- beta
addons:
apt:
packages:
- libopenblas-dev
- libssl-dev
- liblapack-dev
- libblas-dev
- gfortran
cache: cargo
before_cache:
- rm -rf "$TRAVIS_HOME/.cargo/registry/src"
- if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then cargo install cargo-tarpaulin; fi
script:
- if [ "$TRAVIS_OS_NAME" = 'osx' ]; then export CC=gcc-9 FC=gfortran-9 LIBRARY_PATH=/usr/local/opt/gcc/lib/gcc/9; fi
- cargo clean
- cargo build
- cargo test -vv
after_success: |
if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
# Uncomment the following line for coveralls.io
# cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
# Uncomment the following two lines create and upload a report for codecov.io
cargo tarpaulin --out Xml
CODECOV_TOKEN="33fe3b09-bd4c-42e0-8c25-8f721bc37689"
bash <(curl -s https://codecov.io/bash)
fi