forked from niklasso/minisat
-
Notifications
You must be signed in to change notification settings - Fork 16
/
.travis.yml
45 lines (37 loc) · 1.04 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
# Build only, there are no tests ATM
language: cpp
sudo: false
branches:
except:
- /dev-appveyor.*/
matrix:
include:
- os: linux
compiler: clang
env: COMPILER='clang++'
- os: linux
compiler: gcc
env: COMPILER='g++'
- os: osx
osx_image: xcode9.1
compiler: clang
env: COMPILER='clang++'
install:
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- mkdir -p ${DEPS_DIR} && cd ${DEPS_DIR}
- |
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
CMAKE_URL="http://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.tar.gz"
mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
export PATH=${DEPS_DIR}/cmake/bin:${PATH}
elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
which cmake || brew install cmake;
fi
before_script:
- export CXX=${COMPILER}
- cd ${TRAVIS_BUILD_DIR}
script:
- cmake -H. -BBuild-Debug -DCMAKE_BUILD_TYPE=Debug
- cd Build-Debug
- make -j 2
- CTEST_OUTPUT_ON_FAILURE=1 ctest -j 2