0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 01:59:33 +02:00
construct/.travis.yml

59 lines
1.4 KiB
YAML
Raw Normal View History

2016-02-10 00:00:30 +01: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
2016-07-01 06:07:03 +02:00
compiler: gcc-4.8
2016-02-10 00:00:30 +01:00
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
2016-02-10 00:00:30 +01:00
env: COMPILER=gcc-4.8
- os: linux
2016-07-01 06:07:03 +02:00
compiler: gcc-4.9
2016-02-10 00:00:30 +01:00
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
2016-02-10 00:00:30 +01:00
env: COMPILER=gcc-4.9
- os: linux
2016-07-01 06:07:03 +02:00
compiler: gcc-5
2016-02-10 00:00:30 +01:00
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
2016-02-10 00:00:30 +01:00
env: COMPILER=gcc-5
# - os: linux
# compiler: clang
# addons:
# apt:
# sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
# packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
# env: COMPILER=clang-3.7
2016-02-10 00:00:30 +01:00
- os: osx
compiler: clang
2016-03-06 00:47:48 +01:00
env: COMPILER=clang LIBTOOLIZE=glibtoolize
2016-02-10 00:00:30 +01:00
2016-03-10 18:32:46 +01:00
2016-02-10 00:00:30 +01:00
osx_image: xcode7.3
cache:
apt:
ccache:
script:
2016-03-06 00:47:48 +01:00
- bash autogen.sh
- CC=$COMPILER ./configure --with-shared-sqlite
2016-02-10 00:00:30 +01:00
- make -j4
- make install