forked from Tracktion/tracktion_engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
47 lines (44 loc) · 1.2 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
language: cpp
matrix:
include:
- os: linux
dist: xenial
sudo: required
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
- freeglut3-dev
- g++
- libasound2-dev
- libcurl4-openssl-dev
- libfreetype6-dev
- libjack-jackd2-dev
- libx11-dev
- libxcomposite-dev
- libxcursor-dev
- libxinerama-dev
- libxrandr-dev
- mesa-common-dev
- ladspa-sdk
- webkit2gtk-4.0
- libgtk-3-dev
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start
script:
- $TRAVIS_BUILD_DIR/tests/linux/build_examples
- os: osx
osx_image: xcode9.4
script:
- $TRAVIS_BUILD_DIR/tests/mac/build_examples
- os: windows
env:
- MSBUILD_EXE="C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild.exe"
script:
- $TRAVIS_BUILD_DIR/tests/windows/build_examples.bat