forked from dmlc/ps-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (36 loc) · 833 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
# disable sudo to use container based build
sudo: false
# Use Build Matrix to do lint and build seperately
env:
matrix:
- TASK=lint
- TASK=test CXX=g++-4.8
# - TASK=build CXX=g++-4.8
# - TASK=build CXX=g++-5
# dependent apt packages
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
# - g++-5
- wget
- git
# - unzip
before_install:
- export TRAVIS=tests/travis
- source ${TRAVIS}/travis_setup_env.sh
install:
- pip install cpplint pylint --user `whoami`
script: ${TRAVIS}/travis_script.sh
before_cache:
- ${TRAVIS}/travis_before_cache.sh
cache:
directories:
- ${HOME}/.cache/usr
notifications:
# Emails are sent to the committer's git-configured email address by default,
email:
on_success: change
on_failure: always