Skip to content

Commit

Permalink
[actions] in .github/workflows, add more processes to both oneprocess…
Browse files Browse the repository at this point in the history
… and allprocesses
  • Loading branch information
valassi committed Nov 4, 2023
1 parent 30010ae commit 7d62d67
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/testsuite_allprocesses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
strategy:
fail-fast: false # important to see all results even if one fails (fail-fast is true by default)
matrix:
process: [gg_tt.mad, gg_ttg.mad]
# FIXME? Can the list of supported processes be specified only once in oneprocess.yml or allprocesses.yml?
process: [gg_tt.mad, gg_ttg.mad, gg_ttgg.mad, gg_ttggg.mad, ee_mumu.mad]
uses: ./.github/workflows/testsuite_oneprocess.yml
with:
process: ${{ matrix.process }}
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/testsuite_oneprocess.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ on:
# Manually trigger the one-process workflow
# (the lines below are adapted rom the default github manual workflow example)
workflow_dispatch:
inputs:
process:
description: 'Physics process'
default: 'gg_tt.mad'
required: true
###type: string
type: choice
options: [ gg_tt.mad, gg_ttg.mad ]
inputs:
process:
description: 'Physics process'
default: 'gg_tt.mad'
required: true
###type: string
type: choice
# FIXME? Can the list of supported processes be specified only once in oneprocess.yml or allprocesses.yml?
options: [gg_tt.mad, gg_ttg.mad, gg_ttgg.mad, gg_ttggg.mad, ee_mumu.mad]

#----------------------------------------------------------------------------------------------------------------------------------

Expand Down

0 comments on commit 7d62d67

Please sign in to comment.