2015-11-26 11:22:21 +00:00
|
|
|
language: cpp
|
|
|
|
|
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
|
2016-05-16 22:44:10 +00:00
|
|
|
cache: ccache
|
|
|
|
|
2015-11-26 11:22:21 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2016-05-16 22:44:10 +00:00
|
|
|
- env: VERSION=6 BITS=32
|
|
|
|
compiler: gcc-6-32
|
|
|
|
os: linux
|
2016-01-17 10:53:27 +00:00
|
|
|
- env: VERSION=5 BITS=32
|
2016-05-16 22:44:10 +00:00
|
|
|
compiler: gcc-5-32
|
2015-11-26 11:22:21 +00:00
|
|
|
os: linux
|
2016-01-17 10:53:27 +00:00
|
|
|
- env: VERSION=4.9 BITS=32
|
2016-05-16 22:44:10 +00:00
|
|
|
compiler: gcc-4.9-32
|
2015-11-26 11:22:21 +00:00
|
|
|
os: linux
|
2016-01-17 10:53:27 +00:00
|
|
|
- env: VERSION=4.9 BITS=64
|
2016-05-16 22:44:10 +00:00
|
|
|
compiler: gcc-4.9-64
|
2016-01-17 10:53:27 +00:00
|
|
|
os: linux
|
2015-11-26 11:22:21 +00:00
|
|
|
|
|
|
|
before_install:
|
|
|
|
- ./travis.sh before_install
|
|
|
|
|
|
|
|
script:
|
|
|
|
- ./travis.sh script
|
2016-05-16 22:44:10 +00:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- ./travis.sh after_success
|