forked from lispparser/sexp-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
76 lines (65 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# SExp - A S-Expression Parser for C++
# Copyright (C) 2015 Ingo Ruhnke <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Build file for https://travis-ci.org/
#
# Configuration manual:
# http://docs.travis-ci.com/user/build-configuration/
#
# Based on:
# https://github.com/supertuxkart/stk-code/blob/master/.travis.yml
# https://github.com/SuperTux/supertux/blob/master/.travis.yml
sudo: false
language: cpp
compiler:
- gcc
- clang
matrix:
fast_finish: true
env:
global:
- CMAKE_VERSION=3.4.0
matrix:
- BUILD_TYPE="Debug" USE_LOCALE="OFF"
- BUILD_TYPE="Release" USE_LOCALE="OFF"
- BUILD_TYPE="Debug" USE_LOCALE="ON"
- BUILD_TYPE="Release" USE_LOCALE="ON"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- cmake
- g++-4.8
- language-pack-en
- language-pack-de
before_install:
- export PATH=$HOME/root/bin:$PATH
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
# CMake
- wget --no-check-certificate http://www.cmake.org/files/v3.4/cmake-$CMAKE_VERSION.tar.gz -O - | tar xz
- (cd cmake-$CMAKE_VERSION && cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME/root . && make && make install)
script:
# Clean from previous Travis build
- git clean -f
# Then build:
- mkdir "build-${BUILD_TYPE}-LOC${USE_LOCALE}"
- cd "build-${BUILD_TYPE}-LOC${USE_LOCALE}"
- cmake .. -DCMAKE_BUILD_TYPE="$BUILD_TYPE" -DUSE_LOCALE="$USE_LOCALE" -DWARNINGS=ON -DWERROR=ON -DBUILD_TESTS=ON
- make VERBOSE=1 -k
- cd ..
- "build-${BUILD_TYPE}-LOC${USE_LOCALE}/test_sexp"
# EOF #