Skip to content

Commit fc97b86

Browse files
committed
Add initial travis config
1 parent 27889cb commit fc97b86

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: rust
2+
rust:
3+
- stable
4+
- beta
5+
- nightly
6+
matrix:
7+
allow_failures:
8+
- rust: nightly
9+
10+
before_install:
11+
- sudo apt-get -qq update
12+
- sudo apt-get install -y cmake
13+
- sudo apt-get install -y libgtk-3-dev
14+
15+
script:
16+
- cd ui-sys
17+
- cargo build --verbose --tests --examples
18+
- cargo test
19+
- cd ../ui
20+
- cargo build --verbose --tests --examples
21+
- cargo test
22+

0 commit comments

Comments
 (0)