Skip to content
Snippets Groups Projects
Commit 06af5e5b authored by Moritz Kiehn's avatar Moritz Kiehn Committed by Moritz Kiehn
Browse files

ci: use extends instead of yaml anchors

parent 6924841b
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ build-full: ...@@ -81,7 +81,7 @@ build-full:
# test jobs # test jobs
.examples: &example_base .run:
stage: test stage: test
tags: tags:
- cvmfs - cvmfs
...@@ -90,67 +90,67 @@ build-full: ...@@ -90,67 +90,67 @@ build-full:
- export PATH=$PWD/build/bin:$PATH - export PATH=$PWD/build/bin:$PATH
hello_world: hello_world:
<<: *example_base extends: .run
script: script:
- ACTFWHelloWorldExample -n ${EVENTS} - ACTFWHelloWorldExample -n ${EVENTS}
generic_propagation: generic_propagation:
<<: *example_base extends: .run
script: script:
- ACTFWGenericPropagationExample -n ${EVENTS} - ACTFWGenericPropagationExample -n ${EVENTS}
generic_fatras_example: generic_fatras_example:
<<: *example_base extends: .run
script: script:
- ACTFWGenericFatrasExample -n ${EVENTS} - ACTFWGenericFatrasExample -n ${EVENTS}
tgeo_fatras_example: tgeo_fatras_example:
<<: *example_base extends: .run
script: script:
- ACTFWTGeoFatrasExample -n ${EVENTS} - ACTFWTGeoFatrasExample -n ${EVENTS}
generator_particle_gun: generator_particle_gun:
<<: *example_base extends: .run
script: script:
- ActsParticleGun -n ${EVENTS} --output-root 1 --output-csv 1 - ActsParticleGun -n ${EVENTS} --output-root 1 --output-csv 1
generator_pythia8: generator_pythia8:
<<: *example_base extends: .run
script: script:
- ActsPythia8 -n ${EVENTS} --output-root 1 --output-csv 1 - ActsPythia8 -n ${EVENTS} --output-root 1 --output-csv 1
whiteboard_example: whiteboard_example:
<<: *example_base extends: .run
script: script:
- ACTFWWhiteBoardExample -n ${EVENTS} - ACTFWWhiteBoardExample -n ${EVENTS}
generic_geometry_example: generic_geometry_example:
<<: *example_base extends: .run
script: script:
- ACTFWGenericGeometryExample -n ${EVENTS} - ACTFWGenericGeometryExample -n ${EVENTS}
random_number_example: random_number_example:
<<: *example_base extends: .run
script: script:
- ACTFWRandomNumberExample -n ${EVENTS} - ACTFWRandomNumberExample -n ${EVENTS}
dd4hep_fatras_example: dd4hep_fatras_example:
<<: *example_base extends: .run
script: script:
- ACTFWDD4hepFatrasExample -n ${EVENTS} - ACTFWDD4hepFatrasExample -n ${EVENTS}
dd4hep_geometry_example: dd4hep_geometry_example:
<<: *example_base extends: .run
script: script:
- ACTFWDD4hepGeometryExample -n ${EVENTS} - ACTFWDD4hepGeometryExample -n ${EVENTS}
dd4hep_propagation_example: dd4hep_propagation_example:
<<: *example_base extends: .run
script: script:
- ACTFWDD4hepPropagationExample -n ${EVENTS} - ACTFWDD4hepPropagationExample -n ${EVENTS}
reproducibility_generic_propagation: reproducibility_generic_propagation:
<<: *example_base extends: .run
script: script:
- cd scripts - cd scripts
- ./testReproducibility.sh GenericPropagation ${EVENTS} propagation-steps - ./testReproducibility.sh GenericPropagation ${EVENTS} propagation-steps
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment