2016-02-10 00:00:30 +01:00
|
|
|
# Travis-CI Build for charybdis
|
|
|
|
# see travis-ci.org for details
|
|
|
|
|
2016-07-16 20:06:28 +02:00
|
|
|
language: c++
|
2016-02-10 00:00:30 +01:00
|
|
|
sudo: false
|
|
|
|
|
2016-07-16 20:06:28 +02:00
|
|
|
git:
|
|
|
|
submodules: false
|
|
|
|
|
2016-08-11 12:22:38 +02:00
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- http://72.194.219.209:6699/
|
|
|
|
on_success: always
|
|
|
|
on_failure: always
|
|
|
|
on_start: always
|
|
|
|
|
2016-02-10 00:00:30 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
2016-07-16 20:06:28 +02:00
|
|
|
- os: linux
|
|
|
|
dist: precise
|
|
|
|
group: stable
|
|
|
|
compiler: gcc-4.9
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- gcc-4.9
|
|
|
|
- g++-4.9
|
|
|
|
- ['automake', 'autoconf', 'autoconf-archive', 'libtool', 'shtool', 'libsqlite3-dev']
|
|
|
|
env:
|
|
|
|
- CCOMPILER=gcc-4.9
|
|
|
|
- CXXCOMPILER=g++-4.9
|
|
|
|
|
|
|
|
- os: linux
|
|
|
|
dist: precise
|
|
|
|
group: stable
|
|
|
|
compiler: gcc-5
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- gcc-5
|
|
|
|
- g++-5
|
|
|
|
- ['automake', 'autoconf', 'autoconf-archive', 'libtool', 'shtool', 'libsqlite3-dev']
|
|
|
|
env:
|
|
|
|
- CCOMPILER=gcc-5
|
|
|
|
- CXXCOMPILER=g++-5
|
|
|
|
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
group: unstable
|
|
|
|
compiler: gcc-6
|
|
|
|
sudo: required
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- gcc-6
|
|
|
|
- g++-6
|
|
|
|
- ['automake', 'autoconf', 'autoconf-archive', 'libtool', 'shtool', 'libsqlite3-dev']
|
|
|
|
env:
|
|
|
|
- CCOMPILER=gcc-6
|
|
|
|
- CXXCOMPILER=g++-6
|
|
|
|
|
|
|
|
- os: linux
|
|
|
|
dist: precise
|
|
|
|
group: unstable
|
|
|
|
sudo: false
|
|
|
|
compiler: clang-3.6
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-precise-3.6
|
|
|
|
packages:
|
|
|
|
- clang-3.6
|
|
|
|
- ['automake', 'autoconf', 'autoconf-archive', 'libtool', 'shtool', 'libsqlite3-dev']
|
|
|
|
env:
|
|
|
|
- CCOMPILER=clang-3.6
|
|
|
|
- CXXCOMPILER=clang++-3.6
|
|
|
|
|
2016-08-12 04:40:22 +02:00
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
group: unstable
|
|
|
|
sudo: required
|
|
|
|
compiler: clang-3.8
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-trusty-3.8
|
|
|
|
packages:
|
|
|
|
- clang-3.8
|
|
|
|
- gcc-4.9
|
|
|
|
- g++-4.9
|
|
|
|
- ['automake', 'autoconf', 'autoconf-archive', 'libtool', 'shtool', 'libsqlite3-dev']
|
|
|
|
env:
|
|
|
|
- CCOMPILER=clang-3.8
|
|
|
|
- CXXCOMPILER=clang++-3.8
|
2016-07-16 20:06:28 +02:00
|
|
|
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env:
|
|
|
|
- CCOMPILER=clang
|
|
|
|
- CXXCOMPILER=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-07-16 20:06:28 +02:00
|
|
|
- export CC=$CCOMPILER CXX=$CXXCOMPILER
|
2016-07-25 02:14:36 +02:00
|
|
|
- git rev-parse --verify HEAD
|
|
|
|
- m4 --version
|
|
|
|
- autoconf --version
|
|
|
|
- automake --version
|
|
|
|
- make --version
|
2016-07-16 20:06:28 +02:00
|
|
|
- $CC --version
|
|
|
|
- $CXX --version
|
|
|
|
- time bash autogen.sh
|
|
|
|
- time ./configure --with-shared-sqlite --with-included-boost CC=$CC CXX=$CXX
|
|
|
|
- time make -j4
|
|
|
|
- time make -j4 install
|