This repository has been archived by the owner on Dec 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
184 lines (169 loc) · 5.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# Travis-CI configuration file for SuperTux
#
# Configuration manual:
# http://docs.travis-ci.com/user/build-configuration/
#
# Heavily borrowed from SuperTuxKart's travis.yml.
#
# SuperTuxKart's travis.yml file can be found here:
# https://github.com/supertuxkart/stk-code/blob/master/.travis.yml
# License: https://github.com/supertuxkart/stk-code/blob/master/COPYING
#
language: cpp
dist: trusty
sudo: required
compiler:
- gcc
- clang
matrix:
fast_finish: true
exclude:
- compiler: gcc
os: osx
include:
os:
- linux
- osx
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "eVEyzIVjDlB16EPkXmj74tyF9pgX34kpgvBUMXJJ+hduuPwaGC6vl8T164fNQUIua2Z2/PqxmTLJRR3n5Bbkdf859NdX+4JUzc3SoFEKlgcLMYnOQeuimUAiMKxe4vmC4sub5LZVFsp9ORzVYkXgiMBnxiD5GuYxvZPy1lCaH9E="
# BINTRAY_KEY env var
- secure: "E++FmjzZZrvkJpUHZajLUaO1wd0QHcyVidVx8qVeGUJm/khCPBJuhkSe6R2BphcBeeAuhVlsXo26SWCAn89r2KT2OHB/lwtK2CWhO5vOl5bI5o4nFc+m55e2gDIebSBrXQPITEQJpQx1zBL4FVw/A2xQRl+IcjF/EiIzG8Znslc="
# DOWNLOAD_APIKEY env var
- secure: "ZfRyz4HyLtCtHSrCzB+VwdRP3QLbhcXiqsUAhBYNBz6fU8B4l7UchcRrTVsSQJMJeQQ3V7baJsqi4vAcxtd2aV/UDb82aWy9+lwexecjS+fVNh6Ace8j69PVeywpVVonY2Mk/8LeEAvBkjB1OeRlE+gMC08QwOiHqkR2qVcwNYA="
- GLBINDING_VERSION=2.1.4
matrix:
- BUILD_TYPE="Debug"
- BUILD_TYPE="Release"
- USE_GLBINDING=ON
before_install:
# Possibly should not generate packages for all builds?
- export PACKAGE="ON";
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$CC" = "gcc" ] && [ "$BUILD_TYPE" = "Release" ]; then
export RELEASE="ON";
fi;
- if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$BUILD_TYPE" = "Release" ]; then
export RELEASE="ON";
fi;
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi;
if [ "$CXX" = "clang++" ]; then export CXX="clang++-6.0" CC="clang-6.0"; fi;
fi
# Try building with GLBinding
# Note: glbindings ./configure needs to be run twice in order to generate a makefile
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$USE_GLBINDING" = "ON" ]; then
wget https://github.com/cginternals/glbinding/archive/v$GLBINDING_VERSION.tar.gz -O - | tar xz;
cd glbinding-$GLBINDING_VERSION && ./configure --prefix=/usr && ./configure --prefix=/usr;
cd build && make && sudo make install;
cd ../..;
fi
# Fetch the entire git history
- git fetch --unshallow
# Install libRAQM
- git clone --depth 1 https://github.com/HOST-Oman/libraqm.git;
if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd libraqm && ./autogen.sh && ./configure --prefix=/usr --disable-Werror && make -j3 && sudo make install; fi;
if [ "$TRAVIS_OS_NAME" = "osx" ]; then cd libraqm && ./autogen.sh && ./configure --prefix=/usr/local --disable-Werror && make -j3 && sudo make install; fi;
cd ..;
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
wget https://netcologne.dl.sourceforge.net/project/glew/glew/2.1.0/glew-2.1.0.tgz -O - | tar xz;
cd glew-2.1.0/;
make;
sudo make install LIBDIR=/usr/lib;
cd ..;
fi;
script:
- cmake --version
- $CXX --version
- env
- mkdir "build-$BUILD_TYPE"
- cd "build-$BUILD_TYPE"
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DWARNINGS=ON -DWERROR=ON -DGLBINDING_ENABLED=$USE_GLBINDING -DBUILD_TESTS=ON -DCMAKE_INSTALL_MESSAGE=NEVER -DCMAKE_INSTALL_PREFIX=/usr -DINSTALL_SUBDIR_BIN=bin -DINSTALL_SUBDIR_SHARE=share/supertux2
- make VERBOSE=1
- make install DESTDIR="/tmp/supertux-$BUILD_TYPE" VERBOSE=1
- ./test_supertux2
after_success:
- ../.travis/package.sh
deploy:
- provider: s3
# script: ../.travis/deploy.sh
access_key_id:
secure: "YV+ri7L3ewSkbj0OUDCw3f4QA45YJ2NQg4Hy43traiebBcZ9up1w20uwy9jNCltivVWw/o6I3LT1KkBkblaAtD2jUemFfOfiB9gy8KRintjaR4OSCtr5bSiB0JbDNZwOONn5UHNTi/JbEX83jZxmn/V0p0RJZPmKShpS4sxYHH8="
secret_access_key:
secure: "SInYqjQuB0NAchIyqlaS1WjRdvYEpVhRNhPVO2y5H0fHcK+LDHdpkvtuieclD3ayUg/96qOOzKj0Sr7RqSFN4TCrTOmJYIK6JPtYqonor8AZcDucqOnw31v/HOIZ+Y15mvuWJfXY8sWmBXZiXc5l1a+J1A0NSgfdikKyjdULC58="
bucket: supertux-ci-downloads
region: us-west-2
local_dir: s3-upload
upload-dir: ${TRAVIS_COMMIT}/travis/${TRAVIS_OS_NAME}/${TRAVIS_JOB_ID}
skip_cleanup: true
on:
all_branches: true
condition: $RELEASE = ON
- provider: releases
api_key:
secure: DF4cqURrLmxI+NNsOgPDsMHe9IHld0qMpxG4HZw2P2oJKJ9/QHMhBiq3Bi1x5lGMuWnJ02vq8s2mIm056qXOSxBJh6fCJO8Q+tUuUHIWm4tO9Jogy/10sDBLnKUq6sNjsM8BrRoeMWApfSVPqu9D/9k5mI3Zv1pVR+ip4ECQVBE=
file: "s3-upload/SuperTux*"
file_glob: true
skip_cleanup: true
on:
tags: true
condition: $RELEASE = ON
after_deploy:
- ../.travis/deploy.sh
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
packages:
- cmake
- build-essential
- automake
- clang-6.0
- g++-8
- libc++-dev
- libogg-dev
- libvorbis-dev
- libopenal-dev
- libboost-all-dev
- libsdl2-dev
- libsdl2-image-dev
- libfreetype6-dev
- libharfbuzz-dev
- libfribidi-dev
- libglib2.0-dev
- gtk-doc-tools
- rpm
- sshpass
homebrew:
packages:
- cmake
- bash
- libogg
- libvorbis
- glew
- openal-soft
- sdl2
- sdl2_image
- sdl2_ttf
- freetype
- harfbuzz
- fribidi
- glib
- gtk-doc
- glbinding
update: true
coverity_scan:
project:
name: "SuperTux/supertux"
description: "Build submitted via Travis CI"
notification_email: supertux-commit@lists.lethargik.org
build_command_prepend: "cmake . && make clean"
build_command: "make -j 3"
branch_pattern: coverity_scan
notifications:
email:
- supertux-commit@lists.lethargik.org
slack:
secure: cH9u9+EfaPGIcmIcy06hxp5coMmBSKorgABXwE5M06hWbwL+4SIaAlOf9QhrOPi7TZKyyI5GXh687pWNtrgUzaBFhNrPOa/tIzr6kJryAkoFBRdn0sOsf/xYyDgTUfzS79HLYxdv7KDckmiPcgTxGGJOJ3797HBeKaEeufefzlU=