-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
37 lines (35 loc) · 902 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
# Configuration file for Travis CI
language: cpp
jobs:
include:
- os: linux
dist: bionic
addons:
apt:
sources:
- sourceline: "deb https://apt.kitware.com/ubuntu/ bionic main"
key_url: "https://apt.kitware.com/keys/kitware-archive-latest.asc"
update: true
packages:
- gcc-7
- g++-7
- cmake
- ninja-build
- libsdl2-dev
- libsdl2-image-dev
- libsdl2-mixer-dev
- libsdl2-net-dev
- libsdl2-ttf-dev
script: tools/scripts/build-linux.sh
- os: osx
addons:
homebrew:
packages:
- cmake
- ninja
update: true
script: tools/scripts/build-osx.sh
- os: windows
before_install:
- choco install cmake.install ninja
script: tools/scripts/build-windows.bat