-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.old
58 lines (40 loc) · 1.16 KB
/
.travis.old
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
54
55
56
57
58
I DO NOT MAINTAIN TRAVIS BUILDS ANYMORE AS THE SYSTEM IS REDICULOUSLY ANCIENT
IT DOES NOT EVEN SUPPORT OUT OF THE BOX -++14 WHILE WE LIVE IN 2019
os:
- linux
dist: xenial
language: cpp
compiler:
- gcc
- clang
before_install:
- mkdir tmp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libboost-thread-dev
- libboost-system-dev
- libboost-filesystem-dev
- libboost-test-dev
- libfuse-dev
- gcc
- g++
- clang
- libstdc++
install:
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo apt-get install -qq valgrind astyle; fi
- ./build-debug.sh
script:
- ctest --extra-verbose --output-on-failure
##- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then for f in ./build/test/*; do valgrind --leak-check=full --show-reachable=no --error-exitcode=1 "$f"; done; fi
#- if make tidy | grep "Formatted " ; then exit 2; else echo "No changes found by astyle" ; make tidy; fi;
# DEfault method hides error messages for certain imports
# ; python setup.py test
notifications:
email: false
# whitelist
#branches:
# only:
# - master