forked from boost-cmake/boost-cmake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
35 lines (30 loc) · 955 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
#=============================================================================
# Copyright (C) 2013 Daniel Pfeifer <[email protected]>
#
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt
#=============================================================================
language: cpp
compiler:
- clang
- gcc
env:
global:
- CTEST_OUTPUT_ON_FAILURE=1
matrix:
- PROJECT=BoostAccumulators
- PROJECT=BoostAny
- PROJECT=BoostArray
- PROJECT=BoostAssign
- PROJECT=BoostBind
before_install:
- sudo add-apt-repository -y ppa:purplekarrot/cmake
- sudo apt-get update
- sudo apt-get install cmake cmake-data libopenmpi-dev
- mkdir build
- ./shallow-clone develop https://github.com/boostorg/boost.git build/boost
script:
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . --target $PROJECT-test