1
0
rocket-chip/.travis.yml
Henry Cook c981f8b4f3 More travis job re-balancing (#481)
* [travis] Depend on pre-built docker images rather than travis cache
2016-12-11 22:02:46 -08:00

29 lines
604 B
YAML

git:
submodules: false
language: scala
sudo: required
services:
- docker
env:
matrix:
- SUITE=RocketSuiteA
- SUITE=RocketSuiteB
- SUITE=RocketSuiteC
- SUITE=GroundtestSuiteA
- SUITE=GroundtestSuiteB
- SUITE=UnittestSuite
# blacklist private branches
branches:
except:
- hwacha
- boom
- /^hurricane.*$/
before_install:
- docker pull hcook/docker-riscv:chisel
script:
- docker run -v $(pwd):/opt/riscv/test hcook/docker-riscv:chisel /bin/sh -c "make emulator-ndebug -C regression SUITE=$SUITE; make emulator-regression-tests -C regression SUITE=$SUITE"