solanum/.travis.yml

77 lines
2.2 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
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']
2016-02-09 23:00:30 +00:00
env: COMPILER=gcc-4.8
- 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']
2016-02-09 23:00:30 +00:00
env: COMPILER=gcc-4.9
- 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']
2016-02-09 23:00:30 +00:00
env: COMPILER=gcc-5
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']
env: COMPILER=gcc-7
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=gcc-8
2016-02-09 23:00:30 +00:00
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
2018-08-12 08:40:40 +00:00
packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
2016-02-09 23:00:30 +00:00
env: COMPILER=clang-3.7
- os: osx
compiler: clang
2016-03-05 23:47:48 +00:00
env: COMPILER=clang LIBTOOLIZE=glibtoolize
2016-02-09 23:00:30 +00:00
2016-03-10 17:32:46 +00:00
2016-02-09 23:00:30 +00:00
osx_image: xcode7.3
cache:
apt:
ccache:
script:
2016-03-05 23:47:48 +00:00
- bash autogen.sh
2019-09-15 09:44:05 +00:00
- CC=$COMPILER CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable" ./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"