Skip to content
Snippets Groups Projects

ci: enable dRICH benchmarks and run 3 fixed-eta tests

Merged Christopher Dilks requested to merge ci-drich into master
Compare and
3 files
+ 86
34
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 22
4
rich_job_x:
rich_compile:
stage: compile
extends: .compile_benchmark
script:
- cmake -S . -B build -DCMAKE_INSTALL_PREFIX=.local
- cmake --build build -j2
- cmake --install build
drich_fixed_eta:
extends: .rec_benchmark
timeout: 24 hours
timeout: 2 hours
stage: run
needs:
- rich_compile
script:
- bash benchmarks/rich/forward_hadrons.sh
- |
for mode in fixedEtaIdeal fixedEtaMin fixedEtaMax ; do
ruby benchmarks/rich/run_benchmark.rb --ci -s $mode --num-events 50
done
rich_collect:
stage: collect
needs:
- drich_fixed_eta
script:
- echo "Done collecting artifacts."
Loading