cd instead of make -C #46
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: Run All | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-dependencies | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Dependencies | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
make setup | |
- name: Run RTL Verification | |
env: | |
COCOTB_ARGS: "--CI -verbosity debug" | |
run: | | |
make cocotb-verify-all-rtl | |
- name: Debug | |
if: always() | |
run: | | |
cat ./verilog/dv/cocotb/sim/*/*/*.log | |
- name: Install nix | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install --no-confirm --extra-conf " | |
extra-substituters = https://openlane.cachix.org | |
extra-trusted-public-keys = openlane.cachix.org-1:qqdwh+QMNGmZAuyeQJTH9ErW57OWSvdtuwfBKdS254E= | |
" | |
- name: Run OpenLane | |
run: make user_project_wrapper | |
- name: Run RTL Verification | |
env: | |
COCOTB_ARGS: "--CI -verbosity debug" | |
run: | | |
make cocotb-verify-all-gl |