-
Notifications
You must be signed in to change notification settings - Fork 29
/
.travis.yml
49 lines (42 loc) · 906 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
41
42
43
44
45
46
47
48
49
sudo: required
os:
# Disabling OS X because of link failures with sqlite.
# - osx
- linux
dist: trusty
language: rust
rust:
# Make sure to also update the nightly version for the arm_cross_compile branch of the matrix.
- nightly-2017-01-12
- nightly
matrix:
fast_finish: true
allow_failures:
- rust: nightly
include:
- os: linux
rust: nightly-2017-01-12
env: BUILD_ENV=-arm_cross_compile
- os: linux
rust: nightly
env: BUILD_ENV=-cargo_update
addons:
firefox: latest
apt:
packages:
- libupnp-dev
- libespeak-dev
- libudev-dev
# pagekite
- libev-dev
# kcov
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
before_install: source $TRAVIS_BUILD_DIR/tools/travis-$TRAVIS_OS_NAME$BUILD_ENV.sh
install: install_dependencies
before_script: set_up_tests
script:
- build
- lint
- run_tests