forked from roymacdonald/ofxSoundObjects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
126 lines (101 loc) · 2.97 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
# This file allows testing your addon using travis CI servers to use it you'll need to
# create an account in travis.org and enable your addon there.
#
# By default it will test linux 64bit and osx against the master and stable OF branches.
# Other platforms can be enabled by uncommenting the corresponding sections.
#
# If any extra install is needed to use the addon it can be included in the corresponding
# install script in:
#
# scripts/ci/$TARGET/install.sh
#
language: c++
compiler: gcc
sudo: true
matrix:
include:
# fully specify builds, include can't dynamically expand matrix entries
# relative order of sudo and env is important so that addons: is recognized
# Linux 64bit, OF master
- os: linux
dist: trusty
sudo: required
env: BADGE=linux64 TARGET="linux64" OF_BRANCH="master"
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- gdb
# - os: linux
# sudo: required
# dist: trusty
# env: BADGE=linuxarmv6l TARGET="linuxarmv6l"
# - os: linux
# sudo: required
# dist: trusty
# env: BADGE=linuxarmv7l TARGET="linuxarmv7l"
# cache:
# directories:
# - ~/.ccache
# - os: linux
# sudo: required
# dist: trusty
# env: BADGE=emscripten TARGET="emscripten"
# services:
# - docker
# before_install:
# - docker run -dit --name emscripten -v $(pwd):/src trzeci/emscripten:sdk-incoming-64bit bash
# OSX, OF master
- os: osx
osx_image: xcode9.4
compiler: clang
env: BADGE=osx TARGET="osx" OF_BRANCH="master"
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env: BADGE=ios TARGET="ios" OF_BRANCH="master"
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env: BADGE=tvos TARGET="tvos"
# - os: linux
# language: android
# dist: trusty
# sudo: required
# env: BADGE=androidArm TARGET="android" NDK_DIR="android-ndk-r15c" GRADLE_TARGET="compileArm7DebugSources"
# android:
# components:
# - build-tools-25.0.3
# - android-25
# cache:
# directories:
# - ~/.gradle
# - ~/android-ndk-r15c
# - os: linux
# language: android
# dist: trusty
# sudo: required
# env: BADGE=androidX86 TARGET="android" NDK_DIR="android-ndk-r15c" GRADLE_TARGET="compileX86DebugSources"
# android:
# components:
# - build-tools-25.0.3
# - android-25
# cache:
# directories:
# - ~/.gradle
# - ~/android-ndk-r15c
install:
- cd ~
- git clone --depth=1 --branch=$OF_BRANCH https://github.com/openframeworks/openFrameworks
- cd openFrameworks
- git clone --depth=1 --branch=master https://github.com/npisanti/ofxAudioFile addons/ofxAudioFile
- git clone --depth=1 --branch=master https://github.com/kylemcdonald/ofxFft addons/ofxFft
- travis_wait 30 scripts/ci/addons/install.sh
script:
- scripts/ci/addons/build.sh
git:
depth: 10