solanum/.travis.yml

57 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2020-10-15 14:51:12 +00:00
# Travis-CI Build for solanum
2016-02-09 23:00:30 +00:00
# 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
2020-10-17 13:39:24 +00:00
branches:
only:
- main
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
2020-11-23 03:12:36 +00:00
- "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then CFLAGS=\"-Werror -Wno-unused-value -Wno-unused-parameter\" ./configure --enable-assert=hard --enable-warnings; fi"
- "if [ ${TRAVIS_OS_NAME} = 'osx' ]; then ./configure; 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"