-
Notifications
You must be signed in to change notification settings - Fork 4
45 lines (38 loc) · 1.04 KB
/
formal.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: formal
on:
workflow_dispatch:
push:
# Don't run on project submissions:
branches-ignore:
- projects/tt_um_*
pull_request:
# Don't run on project submissions:
paths-ignore:
- projects/tt_um_*/**
jobs:
formal:
runs-on: ubuntu-24.04
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: install oss-cad-suite (cocotb / iverilog)
uses: YosysHQ/setup-oss-cad-suite@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: |
yosys --version
- name: Python requirements
run: pip3 install -r tt-multiplexer/py/requirements.txt
- name: formal tristate
working-directory: tt-multiplexer
run: make formal_tristate
- name: formal tristate
working-directory: tt-multiplexer
run: make formal_connectivity