Using a newer version of iverilog.
authorTim 'mithro' Ansell <mithro@mithis.com>
Tue, 14 Apr 2015 08:28:57 +0000 (18:28 +1000)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Tue, 14 Apr 2015 15:17:13 +0000 (23:17 +0800)
.travis.yml

index 277ff3b360d33032d015fb35efa0d99677f48500..bb0b0d8ff85222025878a32d3d73b00ca9b240da 100644 (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"