forked from madgraph5/madgraph4gpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[actions] in .github/workflows, first complete basic prototype of reu…
…sable workflows (add testsuite_allprocesses.yml orchestrating a matrix of testsuite_oneprocess tests) ** NB: runTest.exe sometimes fails (core dump, illegal instruction), this must be debugged
- Loading branch information
Showing
3 changed files
with
175 additions
and
79 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright (C) 2020-2023 CERN and UCLouvain. | ||
# Licensed under the GNU Lesser General Public License (version 3 or later). | ||
# Created by: A. Valassi (Nov 2023) for the MG5aMC CUDACPP plugin. | ||
# Further modified by: A. Valassi (2023) for the MG5aMC CUDACPP plugin. | ||
|
||
name: Test suite for all processes | ||
|
||
#---------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
on: | ||
|
||
push: | ||
paths: | ||
- '.github/workflows/testsuite*' | ||
|
||
#---------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
jobs: | ||
|
||
# See https://stackoverflow.com/a/75337311 | ||
process-matrix: | ||
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] | ||
uses: ./.github/workflows/testsuite_oneprocess.yml | ||
with: | ||
process: ${{ matrix.process }} | ||
|
||
#---------------------------------------------------------------------------------------------------------------------------------- |
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
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