Skip to content
Snippets Groups Projects

feat: ci single matrix job for e/pi, endcapN/barrel/endcapP

Merged Wouter Deconinck requested to merge wdconinc-master-patch-27127 into master
Files
6
@@ -9,24 +9,39 @@ single:simulate:
@@ -9,24 +9,39 @@ single:simulate:
timeout: 2 hours
timeout: 2 hours
stage: simulate
stage: simulate
needs: ["common:detector"]
needs: ["common:detector"]
 
parallel:
 
matrix:
 
- particle: ['e-', 'pi-']
 
energy: ['1GeV']
 
angle: ['3to45deg', '45to135deg', '135to177deg']
script:
script:
- bash benchmarks/single/simulate.sh e-_1GeV_45to135deg
- bash benchmarks/single/simulate.sh ${particle}_${energy}_${angle}
single:reconstruct:
single:reconstruct:
extends: .phy_benchmark
extends: .phy_benchmark
timeout: 2 hours
timeout: 2 hours
stage: reconstruct
stage: reconstruct
needs: ["single:simulate"]
needs: ["single:simulate"]
 
parallel:
 
matrix:
 
- particle: ['e-', 'pi-']
 
energy: ['1GeV']
 
angle: ['3to45deg', '45to135deg', '135to177deg']
script:
script:
- bash benchmarks/single/reconstruct.sh e-_1GeV_45to135deg
- bash benchmarks/single/reconstruct.sh ${particle}_${energy}_${angle}
single:analyze:
single:analyze:
extends: .phy_benchmark
extends: .phy_benchmark
timeout: 2 hours
timeout: 2 hours
stage: analyze
stage: analyze
needs: ["single:reconstruct", "single:compile"]
needs: ["single:reconstruct", "single:compile"]
 
parallel:
 
matrix:
 
- particle: ['e-', 'pi-']
 
energy: ['1GeV']
 
angle: ['3to45deg', '45to135deg', '135to177deg']
script:
script:
- bash benchmarks/single/analyze.sh e-_1GeV_45to135deg
- bash benchmarks/single/analyze.sh ${particle}_${energy}_${angle}
single:results:
single:results:
stage: collect
stage: collect
Loading