2018-12-13 00:50:12 -07:00
|
|
|
dist: xenial
|
|
|
|
language: python
|
|
|
|
python:
|
2018-12-15 10:03:23 -07:00
|
|
|
- "3.6"
|
2018-12-13 00:50:12 -07:00
|
|
|
- "3.7"
|
2018-12-17 08:51:55 -07:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "$HOME/.ccache"
|
|
|
|
before_install:
|
|
|
|
- export PATH="/usr/lib/ccache:$PATH"
|
2018-12-13 00:50:12 -07:00
|
|
|
install:
|
2018-12-14 07:47:03 -07:00
|
|
|
- pip install coverage codecov pyvcd
|
2018-12-17 08:51:55 -07:00
|
|
|
- git clone https://github.com/YosysHQ/yosys && (cd yosys && make CONFIG=gcc ENABLE_ABC=0)
|
2018-12-13 00:50:12 -07:00
|
|
|
script:
|
|
|
|
- coverage run -m unittest discover
|
|
|
|
- codecov
|