Skip to content
Snippets Groups Projects

fix: set DETECTOR and DETECTOR_CONFIG in benchmark triggers

Merged Wouter Deconinck requested to merge trigger-benchmarks-with-DETECTOR into master
All threads resolved!
+ 28
104
@@ -43,11 +43,6 @@ variables:
## Internal tag used for the CI
INTERNAL_TAG: "pipeline-${CI_PIPELINE_ID}"
## Detector and configuration to use for benchmark
DETECTOR: epic
DETECTOR_CONFIG: epic_craterlake
DETECTOR_REPOSITORYURL: 'https://github.com/eic/epic.git'
stages:
- config
- base ## base OS image
@@ -453,9 +448,9 @@ benchmarks:detector:default:
- version
- jug_xl:default
variables:
DETECTOR: "${DETECTOR}"
DETECTOR_CONFIG: "${DETECTOR_CONFIG}"
DETECTOR_REPOSITORYURL: "${DETECTOR_REPOSITORYURL}"
DETECTOR: "epic"
DETECTOR_CONFIG: epic_craterlake
DETECTOR_REPOSITORYURL: 'https://github.com/eic/epic.git'
BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
BENCHMARKS_CONTAINER: "jug_xl"
BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
@@ -464,105 +459,32 @@ benchmarks:detector:default:
strategy: depend
allow_failure: true
#benchmarks:detector:nightly:
# stage: benchmarks
# rules:
# - !reference ['.nightly', rules]
# needs:
# - version
# - jug_xl:nightly
# variables:
# DETECTOR: "${DETECTOR}"
# DETECTOR_CONFIG: "${DETECTOR_CONFIG}"
# DETECTOR_REPOSITORYURL: "${DETECTOR_REPOSITORYURL}"
# BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
# BENCHMARKS_CONTAINER: "jug_xl"
# BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
# trigger:
# project: EIC/benchmarks/detector_benchmarks
# strategy: depend
# allow_failure: true
benchmarks:detector:nightly:
stage: benchmarks
rules:
- !reference ['.nightly', rules]
needs:
- version
- jug_xl:nightly
variables:
DETECTOR: "epic"
DETECTOR_CONFIG: epic_craterlake
DETECTOR_REPOSITORYURL: 'https://github.com/eic/epic.git'
BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
BENCHMARKS_CONTAINER: "jug_xl"
BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
trigger:
project: EIC/benchmarks/detector_benchmarks
strategy: depend
allow_failure: true
#benchmarks:reconstruction:default:
# stage: benchmarks
# needs:
# - version
# - jug_xl:default
# variables:
# DETECTOR: "${DETECTOR}"
# DETECTOR_CONFIG: "${DETECTOR_CONFIG}"
# DETECTOR_REPOSITORYURL: "${DETECTOR_REPOSITORYURL}"
# BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
# BENCHMARKS_CONTAINER: "jug_xl"
# BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
# trigger:
# project: EIC/benchmarks/reconstruction_benchmarks
# strategy: depend
# allow_failure: true
#
#benchmarks:physics:default:
# stage: benchmarks
# needs:
# - version
# - jug_xl:default
# variables:
# RECO: "eicrecon"
# DETECTOR: "${DETECTOR}"
# DETECTOR_CONFIG: "${DETECTOR_CONFIG}"
# DETECTOR_REPOSITORYURL: "${DETECTOR_REPOSITORYURL}"
# BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
# BENCHMARKS_CONTAINER: "jug_xl"
# BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
# trigger:
# project: EIC/benchmarks/physics_benchmarks
# strategy: depend
# allow_failure: false
#
#benchmarks:reconstruction:nightly:
# stage: benchmarks
# rules:
# - !reference ['.nightly', rules]
# needs:
# - version
# - jug_xl:nightly
# variables:
# DETECTOR: "${DETECTOR}"
# DETECTOR_CONFIG: "${DETECTOR_CONFIG}"
# DETECTOR_REPOSITORYURL: "${DETECTOR_REPOSITORYURL}"
# BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
# BENCHMARKS_CONTAINER: "jug_xl"
# BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
# trigger:
# project: EIC/benchmarks/reconstruction_benchmarks
# strategy: depend
# allow_failure: true
#
#benchmarks:physics:nightly:
# stage: benchmarks
# rules:
# - !reference ['.nightly', rules]
# needs:
# - version
# - jug_xl:nightly
# variables:
# RECO: "eicrecon"
# DETECTOR: "${DETECTOR}"
# DETECTOR_CONFIG: "${DETECTOR_CONFIG}"
# DETECTOR_REPOSITORYURL: "${DETECTOR_REPOSITORYURL}"
# BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
# BENCHMARKS_CONTAINER: "jug_xl"
# BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE"
# trigger:
# project: EIC/benchmarks/physics_benchmarks
# strategy: depend
# allow_failure: false
clean_internal_tag:
image: alpine/curl
stage: finalize
dependencies:
needs:
- version
- benchmarks:detector:default
- benchmarks:detector:nightly
when: always
script:
- |
@@ -575,8 +497,10 @@ clean_internal_tag:
clean_unstable_mr:
extends: .docker
stage: finalize
dependencies:
needs:
- version
- benchmarks:detector:default
- benchmarks:detector:nightly
tags:
- docker-new
when: always
@@ -608,7 +532,7 @@ clean_unstable_mr:
clean_pipeline:
extends: .docker
stage: finalize
dependencies:
needs:
- version
- clean_internal_tag
tags:
Loading