-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (36 loc) · 835 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
git:
depth: 1
os: linux
language: cpp
jobs:
include:
- name: "linux"
os: linux
dist: bionic
language: cpp
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
before_script:
- mkdir build
- cd build
- cmake .. -DJUST_BUILD=1
script:
- export CC=gcc-7
- export CXX=g++-7
- make -j 4
- name: "osx no openmp"
os: osx
language: cpp
compiler: clang
before_script:
- mkdir build
- cd build
- cmake .. -DJUST_BUILD=1
script:
- make -j 4