1
0
Fork 0
rocket-chip/.travis.yml

29 lines
604 B
YAML
Raw Normal View History

git:
submodules: false
2015-08-25 22:29:20 +02:00
language: scala
sudo: required
services:
- docker
2015-08-25 22:29:20 +02:00
env:
matrix:
- SUITE=RocketSuiteA
- SUITE=RocketSuiteB
- SUITE=RocketSuiteC
- SUITE=GroundtestSuiteA
- SUITE=GroundtestSuiteB
- 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
- /^hurricane.*$/
2015-09-09 00:13:38 +02:00
2015-08-25 22:29:20 +02:00
before_install:
- docker pull hcook/docker-riscv:chisel
2015-08-25 22:29:20 +02:00
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"