forked from radarsat1/liblo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (51 loc) · 1.33 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
language: cpp
sudo: false # docker VM
git:
depth: 99999
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-9
- autoconf-archive
env: HOST="" MATRIX_EVAL="CC=gcc-9 && CXX=g++-9"
compiler: gcc
- os: linux
dist: xenial
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-mingw-w64
- autoconf-archive
env:
- HOST="x86_64-w64-mingw32"
- MINGW_ON_LINUX="1"
- MATRIX_EVAL="unset CC && unset CXX"
- os: linux
dist: xenial
addons:
apt:
packages:
- autoconf-archive
env:
- ANDROID_NDK=
script: build/android_build.sh
- os: osx
osx_image: xcode11.3
env: HOST="" MATRIX_EVAL="brew install autoconf-archive"
compiler: clang
before_install:
- eval "${MATRIX_EVAL}"
script: pwd && echo MINGW_ON_LINUX=$MINGW_ON_LINUX && mkdir $PWD/inst && (./autogen.sh --host=$HOST --disable-debug --prefix=$PWD/inst || (cat config.log; false)) && make && ([ x = x$MINGW_ON_LINUX ] && (make check || (for i in src/*.log; do echo === $i ===; cat $i; done; false)) || true) && make install && find inst
notifications:
email:
recipients:
on_success: never
on_failure: change