solanum/.travis.yml

104 lines
3.1 KiB
YAML
Raw Normal View History

2016-02-09 23:00:30 +00:00
# Travis-CI Build for charybdis
# see travis-ci.org for details
language: c
# Use the faster container-based infrastructure.
sudo: false
2019-09-15 10:00:50 +00:00
notifications:
irc:
channels:
- "chat.freenode.net#charybdis"
2016-02-09 23:00:30 +00:00
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2018-08-12 08:40:40 +00:00
packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
2019-09-15 10:12:44 +00:00
env: COMPILER=gcc-4.8
2016-02-09 23:00:30 +00:00
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2018-08-12 08:40:40 +00:00
packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
2019-09-15 10:12:44 +00:00
env: COMPILER=gcc-4.9
2016-02-09 23:00:30 +00:00
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
2018-08-12 08:40:40 +00:00
packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
2019-09-15 10:12:44 +00:00
env: COMPILER=gcc-5
2016-02-09 23:00:30 +00:00
2019-09-15 09:02:11 +00:00
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
2019-09-15 10:12:44 +00:00
env: COMPILER=gcc-7
2019-09-15 09:02:11 +00:00
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
2019-09-15 10:12:44 +00:00
env: COMPILER=gcc-8
2019-09-15 09:02:11 +00:00
2016-02-09 23:00:30 +00:00
- os: linux
compiler: clang
addons:
apt:
2019-09-15 10:41:41 +00:00
sources: ['ubuntu-toolchain-r-test']
packages: ['clang-3.9', 'llvm-3.9-dev', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=clang-3.9
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['clang-4.0', 'llvm-4.0-dev', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=clang-4.0
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['clang-5.0', 'llvm-5.0-dev', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=clang-5.0
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['clang-6.0', 'llvm-6.0-dev', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=clang-6.0
2016-02-09 23:00:30 +00:00
- os: osx
2019-09-15 10:04:28 +00:00
osx_image: xcode7.3
2016-02-09 23:00:30 +00:00
compiler: clang
2016-03-05 23:47:48 +00:00
env: COMPILER=clang LIBTOOLIZE=glibtoolize
2016-02-09 23:00:30 +00:00
cache:
apt:
ccache:
script:
2016-03-05 23:47:48 +00:00
- bash autogen.sh
2019-09-15 10:14:38 +00:00
- CC=$COMPILER CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter" ./configure --with-shared-sqlite --with-assert=hard --enable-warnings
2016-02-09 23:00:30 +00:00
- make -j4
- "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then make check; fi"
2016-02-09 23:00:30 +00:00
- make install
2018-08-12 09:01:56 +00:00
- "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then make -C doc/oper-guide html man info; fi"