Skip to content

Commit 1ab8c86

Browse files
committed
debug
Signed-off-by: Kareem Farid <[email protected]>
1 parent 234e361 commit 1ab8c86

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

.github/actions/setup-dependencies/action.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,7 @@ runs:
8080
with:
8181
path: ${{env.PDK_ROOT}}
8282
key: pdk-${{env.OPEN_PDKS_COMMIT}}
83+
- name: Debug
84+
run: |
85+
ls dependencies
86+
tree dependencies

.github/workflows/test.yaml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
11-
- run: make install-frigate
1211
- uses: ./.github/actions/setup-dependencies
1312
with:
1413
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -21,16 +20,21 @@ jobs:
2120
env:
2221
COCOTB_ARGS: "--CI -verbosity debug"
2322
run: |
24-
make cocotb-verify-all-gl
23+
make cocotb-verify-all-rtl
2524
- name: Debug
2625
if: always()
2726
run: |
2827
cat ./verilog/dv/cocotb/sim/*/*/*.log
29-
# - name: Install nix
30-
# run: |
31-
# curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install --no-confirm --extra-conf "
32-
# extra-substituters = https://openlane.cachix.org
33-
# extra-trusted-public-keys = openlane.cachix.org-1:qqdwh+QMNGmZAuyeQJTH9ErW57OWSvdtuwfBKdS254E=
34-
# "
35-
# - name: Run OpenLane
36-
# run: make user_project_wrapper
28+
- name: Install nix
29+
run: |
30+
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install --no-confirm --extra-conf "
31+
extra-substituters = https://openlane.cachix.org
32+
extra-trusted-public-keys = openlane.cachix.org-1:qqdwh+QMNGmZAuyeQJTH9ErW57OWSvdtuwfBKdS254E=
33+
"
34+
- name: Run OpenLane
35+
run: make user_project_wrapper
36+
- name: Run RTL Verification
37+
env:
38+
COCOTB_ARGS: "--CI -verbosity debug"
39+
run: |
40+
make cocotb-verify-all-gl

0 commit comments

Comments
 (0)