forked from indilib/indi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
62 lines (52 loc) · 1.24 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
compiler:
- gcc
language: cpp
sudo: required
dist: trusty
osx_image: xcode8.3
matrix:
include:
- os: osx
env:
- BUILD_INSTALL_GTEST=YES
# Default config (on trusty gcc4)
- os: linux
# For completness - gcc5 build
- os: linux
addons:
apt:
packages:
- g++-5
sources: &sources
- ubuntu-toolchain-r-test
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
branches:
only:
- master
- develop
- package
- /drv_.*$/
- travis
- refactor/unittest
- feature/travisosx
before_install:
- eval "${MATRIX_EVAL}"
- echo Install dependencies
- travis-ci/deps-${TRAVIS_OS_NAME}.sh
install:
- echo Building INDI Core and drivers
- travis-ci/build-core.sh
- travis-ci/build-libs.sh
- travis-ci/build-3rdparty.sh
- travis-ci/build-deb-packages.sh
# - travis-ci/build-core.sh Debug
# - travis-ci/build-libs.sh Debug
# - travis-ci/build-3rdparty.sh Debug
# - travis-ci/build-deb-packages.sh Debug
# - travis-ci/build-core.sh Release
# - travis-ci/build-libs.sh Release
# - travis-ci/build-3rdparty.sh Release
# - travis-ci/build-deb-packages.sh Release
script:
- travis-ci/run-tests.sh