2013-01-21 22:37:58 +01:00
|
|
|
language: cpp
|
2014-12-05 15:54:19 +01:00
|
|
|
before_install: ./util/travis/before_install.sh
|
|
|
|
script: ./util/travis/script.sh
|
2015-09-03 06:53:35 +02:00
|
|
|
sudo: required
|
2017-05-26 17:03:46 +02:00
|
|
|
dist: trusty
|
2017-06-20 09:39:20 +02:00
|
|
|
group: edge
|
2013-01-21 22:43:56 +01:00
|
|
|
notifications:
|
|
|
|
email: false
|
2014-09-20 00:05:14 +02:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
2016-10-05 22:17:22 +02:00
|
|
|
include:
|
2015-02-28 00:05:29 +01:00
|
|
|
- env: PLATFORM=Win32
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['gcc-mingw-w64-i686', 'g++-mingw-w64-i686', 'binutils-mingw-w64-i686']
|
|
|
|
sources: &sources
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- sourceline: 'deb http://mirrors.kernel.org/ubuntu xenial main universe'
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
- env: PLATFORM=Win64
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['gcc-mingw-w64-x86-64', 'g++-mingw-w64-x86-64', 'binutils-mingw-w64-x86-64']
|
|
|
|
sources: &sources
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- sourceline: 'deb http://mirrors.kernel.org/ubuntu xenial main universe'
|
|
|
|
|
|
|
|
- env: PLATFORM=Unix
|
2014-12-05 15:54:19 +01:00
|
|
|
compiler: clang
|
2016-01-29 15:15:58 +01:00
|
|
|
os: osx
|
2017-05-26 17:03:46 +02:00
|
|
|
osx_image: xcode8
|
|
|
|
|
|
|
|
- env: PLATFORM=Unix COMPILER=gcc-6
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['gcc-6', 'g++-6']
|
|
|
|
sources: &sources
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
|
|
|
|
- env: PLATFORM=Unix COMPILER=gcc-7
|
|
|
|
compiler: gcc
|
|
|
|
os: linux
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['gcc-7', 'g++-7']
|
|
|
|
sources: &sources
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
|
|
|
|
- env: PLATFORM=Unix COMPILER=clang-3.6
|
2016-10-05 22:17:22 +02:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['clang-3.6', 'clang++-3.6']
|
|
|
|
sources: &sources
|
|
|
|
- llvm-toolchain-trusty-3.6
|
|
|
|
|
|
|
|
- env: PLATFORM=Unix COMPILER=clang-4.0
|
2017-03-06 20:34:02 +01:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['clang-4.0', 'clang++-4.0']
|
|
|
|
sources: &sources
|
|
|
|
- llvm-toolchain-trusty-4.0
|
|
|
|
|
|
|
|
- env: PLATFORM=Unix COMPILER=clang-4.0 VALGRIND=1
|
2017-03-25 19:12:18 +01:00
|
|
|
compiler: clang
|
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['valgrind', 'clang-4.0', 'clang++-4.0']
|
|
|
|
sources: &sources
|
|
|
|
- llvm-toolchain-trusty-4.0
|
|
|
|
|
|
|
|
- env: LINT=1
|
|
|
|
compiler: clang
|
2016-10-05 22:17:22 +02:00
|
|
|
os: linux
|
2017-05-26 17:03:46 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages: ['clang-format-4.0']
|
|
|
|
sources: &sources
|
|
|
|
- llvm-toolchain-trusty-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|