aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorTim 'mithro' Ansell <mithro@mithis.com>2017-10-26 12:07:26 -0700
committerTim 'mithro' Ansell <mithro@mithis.com>2017-11-24 15:45:45 +1100
commit48fdabdcda59c7ddf87083fa3c6ea3fcf02d7997 (patch)
treec3455962f62a84803ac848247e5effe7d591dfd7 /.travis.yml
parentd2850b5b809759bafa7aead995d069acc023af15 (diff)
downloadyosys-48fdabdcda59c7ddf87083fa3c6ea3fcf02d7997.tar.gz
yosys-48fdabdcda59c7ddf87083fa3c6ea3fcf02d7997.tar.bz2
yosys-48fdabdcda59c7ddf87083fa3c6ea3fcf02d7997.zip
travis: Adding gcc-4.8 and gcc-6 on Linux.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml47
1 files changed, 47 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index b04e73dcd..fbb4018af 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,6 +13,53 @@ env:
matrix:
include:
+ # Latest gcc-4.8, earliest version supported by Travis
+ - os: linux
+ addons:
+ apt:
+ packages:
+ - g++-4.8
+ - gperf
+ - build-essential
+ - bison
+ - flex
+ - libreadline-dev
+ - gawk
+ - tcl-dev
+ - libffi-dev
+ - git
+ - mercurial
+ - graphviz
+ - xdot
+ - pkg-config
+ - python
+ env:
+ - MATRIX_EVAL="CONFIG=gcc && CC=gcc-4.8 && CXX=g++-4.8"
+
+ # Latest gcc-6 on Travis Linux
+ - os: linux
+ addons:
+ apt:
+ sources:
+ - ubuntu-toolchain-r-test
+ packages:
+ - g++-6
+ - gperf
+ - build-essential
+ - bison
+ - flex
+ - libreadline-dev
+ - gawk
+ - tcl-dev
+ - libffi-dev
+ - git
+ - mercurial
+ - graphviz
+ - xdot
+ - pkg-config
+ - python
+ env:
+ - MATRIX_EVAL="CONFIG=gcc && CC=gcc-6 && CXX=g++-6"
# Latest gcc supported on Travis Linux
- os: linux