2016-05-25 20:21:06 +02:00
|
|
|
git:
|
|
|
|
submodules: false
|
2015-08-25 22:29:20 +02:00
|
|
|
language: scala
|
|
|
|
# run on new infrastructure
|
|
|
|
sudo: false
|
2016-02-23 02:41:01 +01:00
|
|
|
cache:
|
|
|
|
apt: true
|
|
|
|
directories:
|
|
|
|
$HOME/.ivy2
|
|
|
|
regression/install
|
2016-09-05 00:05:30 +02:00
|
|
|
emulator/verilator
|
2016-02-23 17:44:15 +01:00
|
|
|
|
2015-08-25 22:29:20 +02:00
|
|
|
# packages needed to build riscv-tools
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- gcc-4.8
|
|
|
|
- g++-4.8
|
|
|
|
- gperf
|
|
|
|
- autoconf
|
|
|
|
- automake
|
|
|
|
- autotools-dev
|
|
|
|
- libmpc-dev
|
|
|
|
- libmpfr-dev
|
|
|
|
- libgmp-dev
|
|
|
|
- gawk
|
|
|
|
- build-essential
|
|
|
|
- bison
|
|
|
|
- flex
|
|
|
|
- texinfo
|
|
|
|
|
|
|
|
env:
|
2015-11-28 16:17:49 +01:00
|
|
|
matrix:
|
2016-11-22 00:12:05 +01:00
|
|
|
- SUITE=RocketSuiteA
|
|
|
|
- SUITE=RocketSuiteB
|
|
|
|
- SUITE=RocketSuiteC
|
2016-08-16 07:03:03 +02:00
|
|
|
- SUITE=GroundtestSuite
|
2016-09-15 03:10:21 +02:00
|
|
|
- SUITE=UnittestSuite
|
2015-08-25 22:29:20 +02:00
|
|
|
|
2015-09-09 00:13:38 +02:00
|
|
|
# blacklist private branches
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- hwacha
|
|
|
|
- boom
|
2016-10-15 01:38:10 +02:00
|
|
|
- /^hurricane.*$/
|
2015-09-09 00:13:38 +02:00
|
|
|
|
2015-08-25 22:29:20 +02:00
|
|
|
before_install:
|
|
|
|
- export CXX=g++-4.8 CC=gcc-4.8
|
|
|
|
|
|
|
|
script:
|
2016-08-16 07:03:03 +02:00
|
|
|
- make emulator-ndebug -C regression SUITE=$SUITE TORTURE_CONFIG=default
|
|
|
|
- make emulator-regression-tests -C regression SUITE=$SUITE TORTURE_CONFIG=default
|
2016-02-23 02:29:07 +01:00
|
|
|
|
|
|
|
before_cache:
|
2016-11-22 01:51:52 +01:00
|
|
|
- ls -t regression/install | tail -n+2 | sed s@^@regression/install/@ | xargs rm -rf
|