forked from bakercp/ofxUnicode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (57 loc) · 1.42 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
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:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- gdb
# OSX, OF master
- os: osx
osx_image: xcode8
compiler: clang
env: TARGET="osx" OF_BRANCH="master"
# Linux ARM6, OF master
- os: linux
sudo: required
dist: trusty
env: TARGET="linuxarmv6l" OF_BRANCH="master"
# Exclude the default build that would otherwise be generated
# see https://github.com/travis-ci/travis-ci/issues/1228
exclude:
- compiler: gcc
install:
- echo "--"
- echo "ENV VARS"
- printenv
- echo "------------------------------"
- pwd
- echo "000000000000000000000000000000"
- pwd
- cd $HOME
- git clone --depth=1 --branch=CI-ADDON-TESTS https://github.com/bakercp/openFrameworks
- cd openFrameworks
- echo "111111111111111111111111111111"
- pwd
- scripts/ci/addons/install.sh
- echo "222222222222222222222222222222"
- pwd
script:
- echo "SCRIPT XXXXXXXXXXXXXXXXXXXXXXXX"
- $HOME/openFrameworks/scripts/ci/addons/build.sh
- echo "333333333333333333333333333333"
- pwd
git:
depth: 10