-
Notifications
You must be signed in to change notification settings - Fork 45
/
.travis.yml
44 lines (36 loc) · 924 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
## (C) Copyright 2014 Alvaro J. Genial (http://alva.ro)
## Use, modification and distribution are subject to the Boost Software License, Version 1.0.
## (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
language: cpp
compiler:
- g++
- clang++
# TODO:
# os:
# - linux
# - osx
#
matrix:
allow_failures:
- compiler: g++
# - os: osx
branches:
only:
- master
- v1
# before_install:
install:
- sudo apt-get update
- sudo apt-get install valgrind
# TODO: Build environment with boost available.
# - sudo apt-get install libboost-dev libboost-python-dev
# before_script:
script:
- travis_wait scons
- tests/harness.out
- valgrind --track-origins=yes tests/harness.out
- bash tests/harness.sh
- python tests/harness.py
# TODO: Re-enable once Travis bumps memory limits.
# - travis_wait python setup.py build
# - sudo python setup.py install