-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
265 lines (228 loc) · 8.01 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# 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
#
env:
global:
secure: "QcATaD+YIY33DabRIv6OMIAc4ChxRFO3lQJqsr4CeehDR8JgkqcRsHdamk6H8EfWlTltVtPGehTTPqXkjd9LCuyfC9AH1/uaNVaQnS6FhDb6846gAEjUPrwrpmNMHE+nugmGz0vUhX1KGus5zMDkmuXQrR9Bdqhneu3yJmxXWwl6P1ATPSgReAntqcWgLPv8SXre4rSieR1lZGOOpRF7TJrL7R1vw/v//pgmLVdWfNz1p0sPW1whOtSZOhRWccnscOO/0tZ4y0S7le0eWyr9VzXS7n0Xst9HGUBwRb0vI1V8/FD774our2P2oyjB1/Hrt4AUr3JnPMdrLUXji8mZ1fPvHWPgLbPxOmiF7Hn8Wd7ZyUKuNJzObu3LeodX2yjJUL6CJxBofKiJW8F0hpFgJeBW8vSnkqs7Tqo4dw8+X28hMBqR0f0sIMqA94nSfjsgpTAna75lxkNXCXA7LUWcy5lJ/RlAQXtqwGVejids8hVDbR/S8tG4pig1HBkk1AeP8Bbzk2r+1a4VTsPxpe4uVPm1fEz7bq2iRRG7rquYJ+y5sUIdxkBcULXXgYImr93+0nnkhBNlePP2DgYZV/jytr4Kuwq5f9xhPi7f8/9v8duRQhXvbwe4DbP7eO9DRYxT4Vjlrym9THxXPf8e/PFsVw9IAFRaPzkmaIcfyKRv3og="
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: TARGET="linux64" OF_BRANCH="master"
addons:
ssh_known_hosts: pong.hku.nl
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- sshpass
# - gdb
# Linux 64bit, OF stable
- os: linux
dist: trusty
sudo: required
env: TARGET="linux64" OF_BRANCH="stable"
addons:
ssh_known_hosts: pong.hku.nl
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- sshpass
# OSX, OF master
- os: osx
osx_image: xcode8
compiler: clang
env: TARGET="osx" OF_BRANCH="stable"
addons:
ssh_known_hosts: pong.hku.nl
# OSX, OF stable: Not supported yet
# - os: osx
# osx_image: xcode8
# compiler: clang
# env: TARGET="osx" OF_BRANCH="stable"
# Linux ARM6, OF master: Uncomment following lines to enable
# - os: linux
# sudo: required
# dist: trusty
# env: TARGET="linuxarmv6l" OF_BRANCH="master"
# Linux ARM6, OF stable: Not supported yet
# - os: linux
# sudo: required
# dist: trusty
# env: TARGET="linuxarmv6l" OF_BRANCH="stable"
# Linux ARM7, OF master: Uncomment following lines to enable
# - os: linux
# sudo: false
# env: TARGET="linuxarmv7l" OF_BRANCH="master"
# cache:
# directories:
# - ~/rpi2_toolchain
# - ~/firmware-master
# - ~/archlinux
# Linux ARM7, OF stable: Not supported yet
# - os: linux
# sudo: false
# env: TARGET="linuxarmv7l" OF_BRANCH="stable"
# cache:
# directories:
# - ~/rpi2_toolchain
# - ~/firmware-master
# - ~/archlinux
# Emscripten, OF master: Uncomment following lines to enable
# - os: linux
# sudo: false
# env: TARGET="emscripten" OF_BRANCH="master"
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - libstdc++6
# Emscripten, OF stable: Not supported yet
# - os: linux
# sudo: false
# env: TARGET="emscripten" OF_BRANCH="stable"
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - libstdc++6
# iOS, OF master: Not supported yet
# - os: osx
# osx_image: xcode8
# compiler: clang
# env: TARGET="ios" OF_BRANCH="master"
# iOS, OF stable: Not supported yet
# - os: osx
# osx_image: xcode8
# compiler: clang
# env: TARGET="ios" OF_BRANCH="stable"
# tvOS, OF master: Not supported yet
# - os: osx
# osx_image: xcode8
# compiler: clang
# env: TARGET="tvos" OF_BRANCH="master"
# tvOS, OF stable: Not supported yet
# - os: osx
# osx_image: xcode8
# compiler: clang
# env: TARGET="tvos" OF_BRANCH="stable"
# Android armv7, OF master: Uncomment following lines to enable
# - os: linux
# sudo: false
# env: TARGET="android" OPT="armv7" OF_BRANCH="master"
# cache:
# directories:
# - ~/android-ndk-r12bfatal: No tags can describe
# Android armv7, OF stable: Not supported yet
# - os: linux
# sudo: false
# env: TARGET="android" OPT="armv7" OF_BRANCH="stable"
# cache:
# directories:
# - ~/android-ndk-r12b
# Android x86, OF master: Uncomment following lines to enable
# - os: linux
# sudo: false
# env: TARGET="android" OPT="x86" OF_BRANCH="master"
# cache:
# directories:
# - ~/android-ndk-r12b
# Android x86, OF stable: Not supported yet
# - os: linux
# sudo: false
# env: TARGET="android" OPT="x86" OF_BRANCH="stable"
# cache:
# directories:
# - ~/android-ndk-r12b
# Exclude the default build that would otherwise be generated
# see https://github.com/travis-ci/travis-ci/issues/1228
exclude:
- compiler: gcc
install:
- cd ~
- git clone --depth=1 --branch=$OF_BRANCH https://github.com/openframeworks/openFrameworks
- cd openFrameworks
# fails so we do it ourselves - scripts/ci/$TRAVIS_OS_NAME/install.sh
- if [ "$TARGET" == "linux64" ]; then
sudo scripts/linux/ubuntu/install_dependencies.sh -y;
if [ -f scripts/linux/download_libs.sh ]; then
scripts/linux/download_libs.sh;
fi
elif [ "$TARGET" == "osx" ]; then
brew update;
brew upgrade coreutils;
brew install https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb;
if [ -f scripts/$TARGET/download_libs.sh ]; then
scripts/$TARGET/download_libs.sh;
fi
fi
# - scripts/linux/compileOF.sh
- cd addons
- git clone --depth=1 https://github.com/jvcleave/ofxImGui.git
- cd ..
- if [ "$TARGET" == "linux64" ]; then
cd libs/openFrameworksCompiled/project;
make Debug;
fi
script:
# - scripts/ci/addons/build.sh
- cd $TRAVIS_BUILD_DIR
- cd ..
- mv MOCAP_CSV2OSC ~/openFrameworks/apps/devApps/
- cd ~/openFrameworks/apps/devApps/MOCAP_CSV2OSC
- if [ "$TARGET" == "linux64" ]; then
make Debug;
elif [ "$TARGET" == "osx" ]; then
xcodebuild -configuration Release -target MOCAP_CSV2OSC -project "MOCAP_CSV2OSC.xcodeproj";
fi
- cd ..
- mv MOCAP_CSV2OSC $TRAVIS_BUILD_DIR
- cd $TRAVIS_BUILD_DIR;
git:
depth: 100
after_success:
- git checkout config.make
- git fetch --all --tags
- cd bin
- if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then
if [ -n "$TRAVIS_TAG" ] || [[ $TRAVIS_BRANCH == "master" ]]; then
zip -r $( echo $TRAVIS_REPO_SLUG | cut -d"/" -f2)_${TRAVIS_OS_NAME}_$( git describe --tag --always --dirty --abbrev=4).zip *;
else
zip -r $( echo $TRAVIS_REPO_SLUG | cut -d"/" -f2)_${TRAVIS_OS_NAME}_$(TRAVIS_BRANCH)_$( git describe --tag --always --dirty --abbrev=4).zip *;
fi
fi
- if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then export SSHPASS=$BBPWD; fi
- if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then sshpass -e scp *.zip buildbot@pong.hku.nl:public_html/nightly/; fi
- cd ..
deploy:
provider: releases
api_key:
secure: b1QTGdFh3/wK84wGAhRbs9IqtioII7C1FHz0yBUesQIqKfrxCqt2BpsZSqmUxgDqIReIIBt1aGGl7ifzE6TWC5nKzOnfDgfPJwLKrJmsTzDNO+FB2LuDWF4WNFoTMKPZTdzkxPzXJZfXYzc6THibJ6JjfhCttwDkrjyTEY2dz+7s4IYdOkerboHXKxAykAEz+Uy4VA4yN7Np/d7Xu1t7ql5cVnGyP7eIK31MDQd6FxqXHp3JKYzx5laMRjEqpMbCNlU/USFCkbb5XrdrASxCzX5mOInnydkeHnEtNaYRzNZFKW1eW6aQpY6fq/ALHW8d3nn8Ag2ikMThbNM0+soyrmafx+aXI5FJmM+nGPQAKwyf3nkqHOzb4ZP64qlK83DV/K8YjH+vPofsYf9f27sPzTceWHYC42+ZP9RG+JYYJh86/GGbziPdseQo8lizL7vT7CtVFbMQLWxyOjYyYjeWmAmArJXjgQEFFtbH9KY49vfSWtFeETfnAhT6yKtdxHjH7PICZUcigLMvheqKONb9XCUQTHU0HU8WNSHfnnKAkiVD5irvZQqheuJlMivlKA9QJeGmyBUd/cLYiga4uvOKDLptg4UPYrJsqgK8nTGuDbNrguec6NYVuhCqy3eI2mZgng1xb5OEXqIWmDfnQjnI1R4k1rgm15P8EDE23oaEJuU=
file_glob: true
file: bin/*.zip
skip_cleanup: true
overwrite: true
on:
tags: true