-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.travis.yml
81 lines (72 loc) · 2.08 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
language: c++
dist: bionic
branches:
except:
- /^appveyor.*$/
git:
depth: 10
matrix:
include:
- os: linux
compiler: gcc
env:
- GCC_VERSION=7
- CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Release -DSDL2_INCLUDE_DIR=/libs/msvc/SDL2/include -DSDL2_LIBRARY=/usr/local/lib/libSDL2.so"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
- libsdl2-dev
- libsdl2-net-dev
- libogg-dev
- libvorbis-dev
- libghc-zlib-dev
- autoconf
- automake
- libtool
- libphysfs-dev
- os: linux
compiler: gcc
env:
- GCC_VERSION=7
- CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Debug -DSDL2_INCLUDE_DIR=/libs/msvc/SDL2/include -DSDL2_LIBRARY=/usr/local/lib/libSDL2.so"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
- libsdl2-dev
- libsdl2-net-dev
- libogg-dev
- libvorbis-dev
- libghc-zlib-dev
- autoconf
- automake
- libtool
- libphysfs-dev
- os: osx
osx_image: xcode10.1
env:
# CMake has some issues locating SDL2 library installed by Homebrew
- CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Release -DSDL2_INCLUDE_DIR=/usr/include/SDL2 -DSDL2_LIBRARY=/usr/local/lib/libSDL2.dylib"
before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew update;
brew install sdl2_net libvorbis physfs;
ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize;
fi
- if [ -n "$GCC_VERSION" ]; then export CC="gcc-${GCC_VERSION}" CXX="g++-${GCC_VERSION}"; fi
- if [ -n "$CLANG_VERSION" ]; then export CC="clang-${CLANG_VERSION}" CXX="clang++-${CLANG_VERSION}"; fi
- $CC --version
- $CXX --version
script:
- echo ${TRAVIS_BUILD_DIR}
- mkdir build
- cd build
- cmake ${CMAKE_OPTIONS} -DPK3_QUIET_ZIPDIR=YES ..
- make -j2
notifications:
email: false