Merge pull request #146 from IAmMarcelJung:bugfix/pathlib-file-path-h… #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test fabric_gen.py | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build_and_run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Set up OSS CAD suite | |
uses: YosysHQ/setup-oss-cad-suite@v1 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip3 install flake8 pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
if [ -f requirements.txt ]; then python3.9 -m pip install -r requirements.txt; fi | |
sudo apt update | |
sudo apt install python-tk -y | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 fabric_generator/ --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 fabric_generator --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Run fabric generator flow | |
run: | | |
export FAB_ROOT=. | |
python3.9 FABulous.py -c demo | |
python3.9 FABulous.py demo --script ./demo/FABulous.tcl | |
- name: Run simulation smoketest | |
run: | | |
cd ./demo/Test | |
./build_test_design.sh | |
./run_simulation.sh | |