-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.travis.yml
56 lines (47 loc) · 990 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
45
46
47
48
49
50
51
52
53
54
55
56
# Travis-CI configuration file for SuperTuxKart Editor
#
# Configuration manual:
# http://docs.travis-ci.com/user/customizing-the-build/
# http://docs.travis-ci.com/user/languages/cpp/
language: cpp
sudo: false
compiler:
- gcc
- clang
os:
- linux
# - osx
matrix:
fast_finish: true
env:
matrix:
- BUILD_TYPE="Debug"
- BUILD_TYPE="Release"
before_script:
- export THREADS=$((`nproc` + 1))
- echo "THREADS = $THREADS"
- free -mt
script:
- mkdir "build"
- cd "build"
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- make VERBOSE=1 -j $THREADS
addons:
apt:
packages:
- build-essential
- libxxf86vm-dev
- libphysfs1
- libphysfs-dev
- zlib1g
- zlib1g-dev
notifications:
irc:
channels:
- "irc.freenode.org#supertuxkart"
skip_join: false
use_notice: true
template:
- "[%{repository}#%{branch} @%{commit}] %{author}): %{message}"
- "Diff: %{compare_url}"
- "Build: %{build_url}"