1
0
mirror of https://github.com/antonblanchard/chiselwatt.git synced 2026-03-03 18:26:50 +00:00

Initial Travis CI file

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2020-01-31 05:19:39 +11:00
committed by Anton Blanchard
parent 593c183c8c
commit ebce5ccedb

9
.travis.yml Normal file
View File

@@ -0,0 +1,9 @@
language: minimal
install: skip
services: docker
before_install: docker pull verilator/verilator:latest
script:
docker run --rm -t -v `pwd`:/build -w /build --entrypoint /bin/bash verilator/verilator:latest -c "apt update; apt install -y default-jre-headless gnupg; apt update; echo 'deb https://dl.bintray.com/sbt/debian /' | tee -a /etc/apt/sources.list.d/sbt.list; apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823; apt update; apt install -y sbt; make; make check"