-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
45 lines (43 loc) · 1.04 KB
/
.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
41
42
43
44
language: rust
rust:
- 1.13.0
- 1.14.0
- stable
- beta
- nightly
# fix osx openssl compilation error
# Disable Fix - Trevis CI failed build
# os:
# - osx:
# - env:
# - OPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include
# - DEP_OPENSSL_INCLUDE=/usr/local/opt/openssl/include
matrix:
allow_failures:
- rust: nightly
# Test coverage via codecov.io
before_install:
- sudo apt-get update
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
sudo make install &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/iron_cms-*; do mkdir -p "target/cov/$(basename $file)"; kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"