-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy path.travis.yml
executable file
·100 lines (71 loc) · 2.64 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
# OSX/Linux (https://github.com/travis-ci-tester/toolchain-table)
language:
- cpp
sudo:
- true
dist:
- trusty
matrix:
include:
# Linux {
- os: linux
env: SHARED="" MONOLITHIC="" INSTALL_DIR=""
- os: linux
env: SHARED=--shared MONOLITHIC="" INSTALL_DIR=""
- os: linux
env: SHARED="" MONOLITHIC=--monolithic INSTALL_DIR=""
- os: linux
env: SHARED=--shared MONOLITHIC=--monolithic INSTALL_DIR=""
- os: linux
env: SHARED="" MONOLITHIC="" INSTALL_DIR="--install-dir /usr"
- os: linux
env: SHARED=--shared MONOLITHIC="" INSTALL_DIR="--install-dir /usr"
- os: linux
env: SHARED="" MONOLITHIC=--monolithic INSTALL_DIR="--install-dir /usr"
- os: linux
env: SHARED=--shared MONOLITHIC=--monolithic INSTALL_DIR="--install-dir /usr"
# }
# OSX {
- os: osx
osx_image: xcode9.2
env: SHARED="" MONOLITHIC="" INSTALL_DIR=""
- os: osx
osx_image: xcode9.2
env: SHARED=--shared MONOLITHIC="" INSTALL_DIR=""
- os: osx
osx_image: xcode9.2
env: SHARED="" MONOLITHIC=--monolithic INSTALL_DIR=""
- os: osx
osx_image: xcode9.2
env: SHARED=--shared MONOLITHIC=--monolithic INSTALL_DIR=""
# }
install:
# Info about OS
- uname -a
- if [[ "`uname`" == "Linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- if [[ "`uname`" == "Linux" ]]; then sudo apt-get update -qq; fi
- if [[ "`uname`" == "Linux" ]]; then sudo apt-get install g++-7 python3-pip; fi
# Disable autoupdate
# * https://github.com/Homebrew/brew/blob/7d31a70373edae4d8e78d91a4cbc05324bebc3ba/Library/Homebrew/manpages/brew.1.md.erb#L202
- export HOMEBREW_NO_AUTO_UPDATE=1
# Install Python 3
- if [[ "`uname`" == "Darwin" ]]; then travis_retry brew install python3; fi
# Install Python package 'requests'
# 'easy_install3' is not installed by 'brew install python3' on OS X 10.9 Maverick
- if [[ "`uname`" == "Darwin" ]]; then pip3 install requests; fi
- if [[ "`uname`" == "Linux" ]]; then travis_retry pip3 install --user requests; fi
# Install latest Polly toolchains and scripts
- wget https://github.com/ruslo/polly/archive/master.zip
- unzip master.zip
- POLLY_ROOT="`pwd`/polly-master"
- export PATH="${POLLY_ROOT}/bin:${PATH}"
# Install dependencies (CMake, Android NDK)
- install-ci-dependencies.py
# Tune locations
- export PATH="`pwd`/_ci/cmake/bin:${PATH}"
script:
- sudo PATH=$PATH python3 ./jenkins.py --install-boo ${SHARED} ${MONOLITHIC} ${INSTALL_DIR}
# https://docs.travis-ci.com/user/customizing-the-build/#Whitelisting-or-blacklisting-branches
branches:
except:
- /^pr\..*/