forked from openframeworks/openFrameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
166 lines (145 loc) · 3.71 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
language: c++
compiler: gcc
sudo: true
cache: ccache
env:
global:
secure: LBTN8d1hS7ocrqDwxLQqU0tfK3FMCXBI8q1yASEjtkp/v5HEyFkbj22H4jXZ20SkpCTlIG2L6i/fU3d6KzJUzTFuxkQEWsnjkj4jAhxGEWRsT1RV6VcUPQDGLHapXwTy+ZYgMNxE7aAdQaBskPHdVzAhjrzlTwVuKp6KjFn+kMU=
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
- os: linux
dist: trusty
sudo: required
env: TARGET="linux64"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- gdb
# - os: linux
# dist: trusty
# sudo: required
# env: TARGET="linux64" OPT="qbs"
# cache:
# directories:
# - linuxbrew
# timeout: 1800
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - gcc-4.9
# - g++-4.9
# - gdb
- os: linux
sudo: required
dist: trusty
env: TARGET="linuxarmv6l"
- os: linux
sudo: required
dist: trusty
env: TARGET="linuxarmv7l"
cache:
directories:
- ~/.ccache
#- ~/rpi2_toolchain
- ~/firmware-master
#- ~/archlinux
- os: linux
sudo: required
dist: trusty
env: TARGET="emscripten"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++6
- os: osx
osx_image: xcode8
compiler: clang
env: TARGET="osx"
- os: osx
osx_image: xcode8
compiler: clang
env: TARGET="osx" OPT="makefiles"
- os: osx
osx_image: xcode8
compiler: clang
env: TARGET="ios"
- os: osx
osx_image: xcode8
compiler: clang
env: TARGET="tvos"
- os: linux
language: android
dist: trusty
sudo: required
env: 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: 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
# Exclude the default build that would otherwise be generated
# see https://github.com/travis-ci/travis-ci/issues/1228
exclude:
- compiler: gcc
install:
- if [ -f scripts/ci/$TARGET/install.sh ]; then
scripts/ci/$TARGET/install.sh;
fi
- if [ "$TARGET" == "linux64" ]; then
scripts/linux/download_libs.sh -a 64gcc4;
elif [ "$TARGET" == "linuxarmv6l" ]; then
scripts/linux/download_libs.sh -a armv6l;
elif [ "$TARGET" == "linuxarmv7l" ]; then
scripts/linux/download_libs.sh -a armv7l;
elif [ "$TARGET" == "tvos" ]; then
scripts/ios/download_libs.sh;
else
scripts/$TARGET/download_libs.sh;
fi
script:
- ccache -z
- ccache -s
- if [ "$TARGET" = "linux64" ] || [ "$TARGET" = "linuxarmv6l" ] || [ "$TARGET" = "linuxarmv7l" ]; then
wget http://mirrors.kernel.org/ubuntu/pool/main/c/ccache/ccache_3.3.4-1_amd64.deb;
sudo dpkg -i ccache_3.3.4-1_amd64.deb;
fi
- if [ "$TARGET" = "osx" ] && [ "$OPT" = "makefiles" ]; then
scripts/ci/$TARGET/run_tests.sh;
else
scripts/ci/$TARGET/build.sh $OPT;
fi
- if [ "$TARGET" = "linux64" ]; then
scripts/ci/$TARGET/run_tests.sh;
fi
- if [ "$TARGET" != "osx" ] || [ "$OPT" != "makefiles" ]; then
scripts/ci/upload_of_lib.sh;
fi
- ccache -s
git:
depth: 10