forked from openframeworks/openFrameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (70 loc) · 2.13 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
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
- os: linux
dist: trusty
sudo: required
env: TARGET="linux"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- os: osx
compiler: clang
env: TARGET="osx"
- os: osx
compiler: clang
env: TARGET="ios"
- os: linux
sudo: false
env: TARGET="android" OPT="armv7"
cache:
directories:
- ~/android-ndk-r10e
- os: linux
sudo: false
env: TARGET="android" OPT="x86"
cache:
directories:
- ~/android-ndk-r10e
- os: linux
sudo: false
env:
- TARGET="docs"
- secure: kjz286d6rs2VHpv4WnxAOYXcdTIaTaABZ0SNXf27r5H+NDu5qx8ZSeCmj/9op/sDjTtpkLKhi2a0njUCWwak28RAWP3dNkT92MkUPVKBkevznSxWeqwLHoUos3AJnhPMB+cwrWvmRC+Ljt5K1q8SxQsS/HXM9pzKL3DG3qxM+eo=
addons:
apt:
packages:
- python-software-properties
- doxygen
- ncftp
# Exclude the default build that would otherwise be generated
# see https://github.com/travis-ci/travis-ci/issues/1228
exclude:
- compiler: gcc
allow_failures:
# temporary until we find out how to prevent (spurious) build failures
- env:
- TARGET="docs"
- secure: kjz286d6rs2VHpv4WnxAOYXcdTIaTaABZ0SNXf27r5H+NDu5qx8ZSeCmj/9op/sDjTtpkLKhi2a0njUCWwak28RAWP3dNkT92MkUPVKBkevznSxWeqwLHoUos3AJnhPMB+cwrWvmRC+Ljt5K1q8SxQsS/HXM9pzKL3DG3qxM+eo=
install:
- if [ "$TARGET" == "android" ] || [ "$TARGET" == "linux" ] || [ "$TARGET" == "docs" ]; then
scripts/ci/$TARGET/install.sh;
fi
script:
- scripts/ci/$TARGET/build.sh $OPT
- if [ "$TARGET" == "osx" ] || [ "$TARGET" == "linux" ]; then
scripts/ci/$TARGET/run_tests.sh;
fi
after_success:
# this will only run fully on a commit, not a PR, due to secure above
if [ "$TARGET" == "docs" ]; then scripts/ci/$TARGET/after_success.sh; fi
git:
depth: 10