1
0
mirror of https://github.com/antonblanchard/chiselwatt.git synced 2026-03-06 11:24:02 +00:00
Files
antonblanchard.chiselwatt/.travis.yml
Anton Blanchard 8f8382a2a9 Add a micropython test
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
2020-01-31 06:33:40 +11:00

10 lines
584 B
YAML

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 python3-pexpect; 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; ./scripts/test_micropython_long.py"