-
Notifications
You must be signed in to change notification settings - Fork 23
/
.travis.yml
88 lines (78 loc) · 1.98 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
sudo: false
language: rust
cache:
cargo: true
directories:
- integration_tests/target
rust:
- stable
os:
- linux
- osx
matrix:
include:
- os: linux
env: GNUPLOT=yes
addons:
apt:
packages:
- gnuplot
- os: linux
env: CLIPPY=yes
rust: stable
- os: linux
env: RUSTFMT=yes
rust: stable
- os: linux
env: GNUPLOT=yes
rust: 1.40.0
addons:
apt:
packages:
- gnuplot
- os: linux
env: GNUPLOT=no
rust: nightly
- os: linux
env: GNUPLOT=no
rust: nightly
- os: linux
env: GNUPLOT=yes
rust: nightly
addons:
apt:
packages:
- gnuplot
- os: osx
env: GNUPLOT=yes
- os: linux
env: GNUPLOT=yes INTEGRATION_TESTS=yes
addons:
apt:
packages:
- gnuplot
- os: linux
env: GNUPLOT=no INTEGRATION_TESTS=yes
install:
- sh ci/install.sh
script:
- sh ci/script.sh
before_cache:
- find ./target/debug -maxdepth 1 -type f -delete
- rm -rf ./target/debug/deps/*cargo*criterion*
- rm -rf ./target/debug/.fingerprint/*cargo*criterion*
- rm -f ./target/.rustc_info.json
- find ./integration_tests/target/debug -maxdepth 1 -type f -delete
- find ./integration_tests/target/release -maxdepth 1 -type f -delete
- rm -rf ./integration_tests/target/debug/deps/test_benchmark*
- rm -rf ./integration_tests/target/debug/deps/integration_test*
- rm -rf ./integration_tests/target/debug/.fingerprint/test_benchmark*
- rm -rf ./integration_tests/target/debug/.fingerprint/integration_test*
- rm -rf ./integration_tests/target/release/deps/test_benchmark*
- rm -rf ./integration_tests/target/release/deps/integration_test*
- rm -rf ./integration_tests/target/release/.fingerprint/test_benchmark*
- rm -rf ./integration_tests/target/release/.fingerprint/integration_test*
- rm -f ./integration_tests/target/.rustc_info.json
notifications:
email:
on_success: never