mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
de181120b8
git-subtree-dir: fpga/lib/eth git-subtree-mainline: 4cdce8caa74728a4973261dae0e00fcd479af9ac git-subtree-split: e5171d874916b3e23a02d5621e91dd9ff02b7fcb
16 lines
443 B
YAML
16 lines
443 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
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/x86_64-linux-gnu/ivl/myhdl.vpi
|
|
- cd $d
|
|
script:
|
|
- cd tb && py.test
|
|
|