solanum/.travis.yml

58 lines
1.6 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.
dist: bionic
2016-02-09 23:00:30 +00:00
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-7
2016-02-09 23:00:30 +00:00
addons:
apt:
2019-10-06 18:35:17 +00:00
packages: ['gcc-7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo', 'libhyperscan-dev']
2019-09-15 09:02:11 +00:00
- os: linux
compiler: gcc-8
2019-09-15 09:02:11 +00:00
addons:
apt:
2019-10-06 18:35:17 +00:00
packages: ['gcc-8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo', 'libhyperscan-dev']
2019-09-15 09:02:11 +00:00
2016-02-09 23:00:30 +00:00
- os: linux
compiler: clang-7
2019-09-15 10:41:41 +00:00
addons:
apt:
2019-10-06 18:35:17 +00:00
packages: ['clang-7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo', 'libhyperscan-dev']
2019-09-15 10:41:41 +00:00
- os: linux
compiler: clang-8
2019-09-15 10:41:41 +00:00
addons:
apt:
2019-10-06 18:35:17 +00:00
packages: ['clang-8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo', 'libhyperscan-dev']
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
env: 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
- "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then CFLAGS=\"-Werror -Wno-unused-value -Wno-unused-parameter\" ./configure --with-shared-sqlite --with-assert=hard --enable-warnings; fi"
- "if [ ${TRAVIS_OS_NAME} = 'osx' ]; then ./configure --with-shared-sqlite; fi"
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"