forked from njoy/NJOY2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (34 loc) · 769 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
sudo: required
dist: trusty
git:
submodules: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- gcc-6
- gfortran-6
- cmake
- cmake-data
language: c
compiler:
- gcc
os:
- linux
- osx
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gcc; fi
script: ./.travis/build.sh
env:
- build_type=debug static_libraries=FALSE
- build_type=release static_libraries=FALSE
- build_type=debug static_libraries=TRUE
- build_type=release static_libraries=TRUE
matrix:
include:
- os: linux
compiler: gcc
env: build_type=coverage static_libraries=FALSE