Using a newer version of iverilog.

This commit is contained in:
Tim 'mithro' Ansell 2015-04-14 18:28:57 +10:00 committed by Sebastien Bourdeauducq
parent c3c5ffb303
commit 9e7dc175a4
1 changed files with 9 additions and 2 deletions

View File

@ -1,8 +1,15 @@
language: python
python:
- "3.4"
install:
- "sudo apt-get install iverilog; iverilog -v; true"
# Install iverilog package.
- "sudo add-apt-repository -y ppa:mithro/iverilog-backport"
- "sudo apt-get update"
- "sudo apt-get install iverilog"
- "iverilog -v; true"
# Build the vpi module.
- "(cd vpi; make; sudo make install)"
script:
- "python setup.py test -s migen.test.test_fifo.SyncFIFOCase"
- "python setup.py test"