Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,22 @@ jobs:
with:
name: mc100-32-ctp
path: gen/proc_ctp/pdf/MC100-32-CTP.pdf
build-mock-processor-ctp:
if: (github.event_name == 'merge_queue') || (inputs.dry-run == false)
runs-on: ubuntu-latest
steps:
- name: Clone Github Repo Action
uses: actions/checkout@v4
- name: singularity setup
uses: ./.github/actions/singularity-setup
- name: Generate MockProcessor CTP
run: ./do gen:proc_ctp_pdf[MockProcessor]
- name: Upload MockProcessor CTP
uses: actions/upload-artifact@v4
if: (github.event_name == 'push') && (github.ref_name == 'main')
with:
name: mockprocessor-ctp
path: gen/proc_ctp/pdf/MockProcessor-CTP.pdf
build-idl-doc:
if: (github.event_name == 'merge_queue') || (inputs.dry-run == false)
runs-on: ubuntu-latest
Expand Down
Loading