annotate src/capnproto-0.6.0/.travis.yml @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents 0994c39f1e94
children
rev   line source
cannam@62 1 branches:
cannam@62 2 only:
cannam@62 3 - master
cannam@62 4 - /release-.*/
cannam@62 5 language: cpp
cannam@62 6 os:
cannam@62 7 - linux
cannam@62 8 - osx
cannam@62 9 compiler:
cannam@62 10 - gcc
cannam@62 11 - clang
cannam@62 12 dist: trusty
cannam@62 13 sudo: false
cannam@62 14 addons:
cannam@62 15 apt:
cannam@62 16 packages:
cannam@62 17 - automake
cannam@62 18 - autoconf
cannam@62 19 - libtool
cannam@62 20 - pkg-config
cannam@62 21 before_install:
cannam@62 22 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
cannam@62 23 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install automake autoconf libtool; fi
cannam@62 24 script: ./super-test.sh -j2 quick # limit parallelism due to limited memory on Travis