Skip to content

Commit 71124ec

Browse files
authored
Create .travis.yml
1 parent 96d7877 commit 71124ec

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: rust
2+
rust:
3+
- stable
4+
- beta
5+
- nightly
6+
matrix:
7+
allow_failures:
8+
- rust: nightly
9+
fast_finish: true
10+
11+
cache: cargo
12+
13+
# Taken from Trust
14+
before_cache:
15+
# Travis can't cache files that are not readable by "others"
16+
- chmod -R a+r $HOME/.cargo
17+
18+
# Only check that the project builds. Do not run tests to avoid
19+
# straining the openml server
20+
script:
21+
- cargo build --verbose --all

0 commit comments

Comments
 (0)