mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
17 lines
425 B
YAML
17 lines
425 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
virtualenv:
|
|
system_site_packages: true
|
|
before_install:
|
|
- export d=`pwd`
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y iverilog
|
|
- hg clone https://bitbucket.org/alexforencich/myhdl
|
|
- cd $d/myhdl && sudo python 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
|
|
|