forked from GooFit/GooFit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
53 lines (53 loc) · 1.65 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
language: cpp
sudo: false
dist: bionic
cache:
ccache: true
apt: true
directories:
- "${TRAVIS_BUILD_DIR}/deps/root"
branches:
only:
- master
- "/^v\\d/"
env:
global:
- CTEST_OUTPUT_ON_FAILURE: 1
- OMP_NUM_THREADS: 2
- DEPS_DIR: "${TRAVIS_BUILD_DIR}/deps"
- DOXYFILE: "$TRAVIS_BUILD_DIR/docs/Doxyfile"
- secure: UxIkC5evjPTPkh4tG9VIK4Hjy0+Wbm69qu54jde0EMjlP3FzLrvXCKr1gh/Y6ywzQYSWE2fAsDWwQGmfqaphAFpjjT1S3Bwpa6ojTikjBe16jaCgIKtRiVXBr9LsNl3W7W9pDrXs1Ue40mSEksZJm8a9G7H4Ibb7K3izrllkhuQ=
- secure: ZntCiCGTCKOEeo7uIz/5F/NZny2Ng2nHda6SQ6lQ8SsU6Moug7WsVzWGS7ZM/leAhKbDfYCHatyYjTorsh1SWhryKTJxElv6/vVR6f0SSxY6l+J2h/sbe56sZF/XISTc6xy5icGsEiciD4TYwHiCGuhVnV6hTkK3Y6/0PnuH/S0=
- secure: f9bVOvGDFhoi230dLjSd4UG/Z4/jZaCe3osdlMxkfnn6xKu93m4O528KLfmfXs4O5ngLjbXFe+5RlOSSi2IGphTH5r5o+pjYo0OebwIlyPUJ0W7EaXhkxhRhYBxZmxS3dJ1cCC0fucDVWLIzHeAAuaW08EuykRdoRPnHNGEDO+w=
matrix:
include:
- compiler: clang
script:
- ".ci/check_tidy.sh"
- compiler: gcc
addons:
apt:
packages:
- doxygen-latex
- graphviz
- libx11-dev
- libxpm-dev
- libxft-dev
- libxext-dev
- python-pip
install:
- python -m pip install --user --upgrade pip
- python -m pip install --user plumbum pandas matplotlib numba uncertainties scikit-build pytest numpy twine
script:
- ".ci/travis.sh"
after_success:
- if [[ -n "${TRAVIS_TAG}" ]] ; then echo "Updating docs" && cd "${TRAVIS_BUILD_DIR}"
&& .ci/build_docs.sh ; fi
before_install:
- source .ci/build_root.sh
install: skip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3b44155c88d0eb365327
on_start: change