forked from vgmtrans/vgmtrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (45 loc) · 1.09 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
# Travis-CI configuration file for VGMTrans
sudo: required
dist: trusty
language: cpp
matrix:
include:
# GCC7
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
- libglib2.0-dev
- libfluidsynth-dev
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install qtbase5-dev
- eval "${MATRIX_EVAL}"
# LLVM5
- os: linux
compiler: clang
addons:
apt:
packages:
- libglib2.0-dev
- libfluidsynth-dev
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install qtbase5-dev
# xcode7.3
# - os: osx
# before_install:
# - brew upgrade qt || brew install qt
# - brew upgrade fluid-synth || brew install fluid-synth
script:
- mkdir build
- cd build
- cmake ..
- make