forked from alexrenz/AdaPM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
53 lines (41 loc) · 992 Bytes
/
.travis.yml
File metadata and controls
53 lines (41 loc) · 992 Bytes
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
# 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=test CXX=g++-7
- TASK=test CXX=g++-7 LAPSE_EXTERNAL_LDFLAGS="-DPS_BACKEND=1"
# - 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
- g++-7
- wget
- git
- libboost-all-dev
- build-essential
# - 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