-
Notifications
You must be signed in to change notification settings - Fork 44
37 lines (34 loc) · 1015 Bytes
/
pull_request.yml
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
# docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
# This is the top-level workflow to run on all pull-requests, and invokes
# several other workflow dependencies
name: Pull Request
on:
workflow_dispatch:
pull_request:
jobs:
# Call auxiliary workflows
pre_run:
uses: ./.github/workflows/pre-run-check.yml
verilator:
uses: ./.github/workflows/build-test-verilator.yml
needs: pre_run
with:
run_vltr: ${{ needs.pre_run.outputs.run_vltr }}
interactive_dbg:
uses: ./.github/workflows/interactive-debugging.yml
needs: pre_run
with:
run_vltr: ${{ needs.pre_run.outputs.run_vltr }}
doc_gen:
uses: ./.github/workflows/doc-gen.yml
permissions:
pages: write
id-token: write
post_run:
name: Call Post Run Final
runs-on: ubuntu-22.04
needs: [pre_run, verilator, interactive_dbg, doc_gen]
steps:
- name: Checkout RTL repo
uses: actions/checkout@v4
- run: echo "Finalize"