From ae7758d83595b0b4a206bad4db7a908b5791aeac Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Sat, 21 Mar 2015 22:31:22 -0700 Subject: [PATCH] Add .travis.yml --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..394066aff --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "3.4" +before_install: + - export d=`pwd` + - export PYTHON_EXE=`which python` + - sudo apt-get update -qq + - sudo apt-get install -y iverilog + - git clone https://github.com/jandecaluwe/myhdl.git + - cd $d/myhdl && sudo $PYTHON_EXE setup.py install + - cd $d/myhdl/cosimulation/icarus && make && sudo install -m 0755 -D ./myhdl.vpi /usr/lib/ivl/myhdl.vpi + - cd $d +script: + - cd tb && py.test +