File: .travis.yml

package info (click to toggle)
mapnik 3.0.22%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 17,260 kB
  • sloc: cpp: 144,587; python: 1,426; sh: 785; makefile: 170; xml: 140; lisp: 13
file content (112 lines) | stat: -rw-r--r-- 3,789 bytes parent folder | download
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
101
102
103
104
105
106
107
108
109
110
111
112
language: generic

git:
  depth: 10
  submodules: false

env:
  global:
   - CCACHE_TEMPDIR=/tmp/.ccache-temp
   - CCACHE_COMPRESS=1
   - HEAVY_JOBS="2"
   - PREFIX=/tmp/mapnik
   - secure: "F6ivqDNMBQQnrDGA9+7IX+GDswuIqQQd7YPJdQqa2Ked9jddAQDeJClb05ig3JlwfOlYLGZOd43ZX0pKuMtI2Gbkwz211agGP9S3YunwlRg8iWtJlO5kYFUdKCmJNhjg4icfkGELCgwXn+zuEWFSLpkPcjqAFKFlQrIJeAJJgKM="

cache:
  directories:
  - $HOME/.ccache

dist: trusty
sudo: false

matrix:
  include:
    - os: linux
      name: Linux gcc-6
      env: JOBS=4 CXX="ccache g++-6" CC="gcc-6"
      addons:
        postgresql: "9.4"
        apt:
          sources: [ 'ubuntu-toolchain-r-test']
          packages: [ 'libstdc++-6-dev', 'g++-6', 'xutils-dev', 'postgresql-9.4-postgis-2.3' ]
    - os: linux
      name: Linux clang-3.9
      env: JOBS=8 CXX="ccache clang++-3.9 -Qunused-arguments" CC="clang-3.9" ENABLE_GLIBC_WORKAROUND=true TRIGGER=true
      addons:
        postgresql: "9.4"
        apt:
          sources: [ 'ubuntu-toolchain-r-test' ]
          packages: [ 'libstdc++-4.9-dev', 'xutils-dev', 'postgresql-9.4-postgis-2.3' ]
    - os: linux
      name: Linux clang-3.9 + coverage
      env: JOBS=8 COVERAGE=true CXX="ccache clang++-3.9 -Qunused-arguments" CC="clang-3.9"
      addons:
        postgresql: "9.4"
        apt:
          sources: [ 'ubuntu-toolchain-r-test' ]
          packages: ['libstdc++-4.9-dev', 'xutils-dev', 'postgresql-9.4-postgis-2.3' ]
    - os: osx
      name: OSX clang
      # https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions
      osx_image: xcode7.3 # upgrades clang from 6 -> 7
      env: JOBS=4 CXX="ccache clang++ -Qunused-arguments"

before_install:
 # workaround travis rvm bug
 # http://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
 - |
   if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
     rvm get head || true
   fi
 - source scripts/travis-common.sh
 - export PATH=${PREFIX}/bin:$(pwd)/mason_packages/.link/bin:${PATH}
 - export COVERAGE=${COVERAGE:-false}
 - export BENCH=${BENCH:-false}
 - git_submodule_update --init deps/

install:
 - on 'osx' export DATA_PATH=$(brew --prefix)/var/postgres
 - on 'osx' rm -rf ${DATA_PATH}
 - on 'osx' initdb ${DATA_PATH} -E utf8
 - on 'osx' pg_ctl -w start -l postgres.log --pgdata ${DATA_PATH};
 - on 'osx' cat postgres.log;
 - on 'osx' createuser -s postgres
 - psql -c 'create database template_postgis;' -U postgres
 - psql -c 'create extension postgis;' -d template_postgis -U postgres
 - enabled ${COVERAGE} curl -S -f https://codecov.io/bash -o codecov
 - enabled ${COVERAGE} chmod +x codecov

before_script:
 - source bootstrap.sh
 - |
   if [[ $(uname -s) == 'Linux' ]]; then
     mason install clang++ 3.9.1
     export PATH=$(mason prefix clang++ 3.9.1)/bin:${PATH}
     mason install llvm-cov 3.9.1
     export PATH=$(mason prefix llvm-cov 3.9.1)/bin:${PATH}
     which llvm-cov
     export LLVM_COV="$(mason prefix llvm-cov 3.9.1)/bin/llvm-cov"
   fi
 - ccache --version
 - ccache -p || true
 - ccache --show-stats || true
 - commit_message_parse

script:
 - export SCONSFLAGS='--debug=time'
 - configure BENCHMARK=${BENCH} ENABLE_GLIBC_WORKAROUND=${ENABLE_GLIBC_WORKAROUND:-false}
 - cat config.log
 # we limit the `make` to 40 min
 # to ensure that slow builds still upload their
 # ccache results and therefore should be faster
 # (and might work) for the next build
 - DEADLINE=$(( $(date +%s) + 40 * 60 ))
 - scripts/travis-command-wrapper.py -s "date" -i 120 --deadline="$DEADLINE" make
 - test_ok && git_submodule_update --init test/
 - test_ok && make test
 - test_ok && enabled ${COVERAGE} coverage
 - test_ok && enabled ${BENCH} make bench
 - ./scripts/check_glibcxx.sh

after_success:
 - enabled ${TRIGGER} trigger_downstream