This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
forked from revbayes/revbayes.archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
115 lines (111 loc) · 2.84 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
sudo: required
cache: apt
language: cpp
matrix:
include:
- os: linux
dist: xenial
env:
- CXX_COMPILER=/usr/bin/g++-7
- C_COMPILER=/usr/bin/gcc-7
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:mhier/libboost-latest'
packages:
- g++-7
- pandoc
- boost1.67
- os: linux
dist: xenial
env:
- CXX_COMPILER=/usr/bin/g++-8
- C_COMPILER=/usr/bin/gcc-8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:mhier/libboost-latest'
packages:
- g++-8
- pandoc
- boost1.67
- os: linux
dist: xenial
env:
- CXX_COMPILER=/usr/bin/g++-9
- C_COMPILER=/usr/bin/gcc-9
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:mhier/libboost-latest'
packages:
- g++-9
- pandoc
- boost1.67
- os: linux
dist: xenial
env:
- CXX_COMPILER=/usr/bin/g++-7
- C_COMPILER=/usr/bin/gcc-7
- MAYBE_MPI="-mpi true"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:mhier/libboost-latest'
packages:
- g++-7
- pandoc
- boost1.67
- libopenmpi-dev
- os: linux
dist: xenial
compiler: clang++
env:
- CXX_COMPILER=/usr/local/clang-7.0.0/bin/clang++
- C_COMPILER=/usr/local/clang-7.0.0/bin/clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:mhier/libboost-latest'
packages:
- g++-8
- pandoc
- boost1.67
- os: osx
osx_image: xcode9.4
env: PYTHON=3.5.1
- os: osx
osx_image: xcode10.2
env: PYTHON=3.5.1
before_install:
# We need to re-export CC and CXX here, because travis exports CXX=g++ or clang++ AFTER we set CXX.
- if [ -n "${C_COMPILER}" ]; then sudo update-alternatives --install /usr/bin/gcc gcc "${C_COMPILER}" 90; fi
- if [ -n "${CXX_COMPILER}" ]; then sudo update-alternatives --install /usr/bin/g++ g++ "${CXX_COMPILER}" 90; fi
script:
# Build
- cd projects/cmake
- mkdir build
- ./regenerate.sh -boost false -travis true ${MAYBE_MPI}
- cd build
- cmake . -DINTERNAL_BOOST=OFF
- make -j4
- cd ..
# Run tests
- cd ../..
- echo "\"Hello World\"" | projects/cmake/rb
- cd tests
- ./run_integration_tests.sh ${TRAVIS_BUILD_DIR}/projects/cmake/rb
# Run testiphy
- export PATH=${TRAVIS_BUILD_DIR}/projects/cmake:$PATH
- cd
- git clone https://gitlab.com/testiphy/testiphy.git
- cd testiphy
- ./testiphy rb
# notifications
notifications:
slack: revbayes:bQO6VTun0Orhx2NiKktVPDsS