From 07e84869676df2836776997d35c18c252179bc46 Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Sun, 1 Oct 2023 23:39:11 -0500 Subject: [PATCH] Fix circular definition of trigger variables --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index add5b19b5..f56698a15 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,6 +44,7 @@ variables: INTERNAL_TAG: "pipeline-${CI_PIPELINE_ID}" ## Detector and configuration to use for benchmark + ## problem: Defining these here mean we can add them as trigger variables later DETECTOR: epic DETECTOR_CONFIG: epic_craterlake DETECTOR_REPOSITORYURL: 'https://github.com/eic/epic.git' @@ -472,9 +473,9 @@ benchmarks:detector:nightly: - version - jug_xl:nightly 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}-nightly" BENCHMARKS_CONTAINER: "jug_xl" BENCHMARKS_REGISTRY: "$CI_REGISTRY_IMAGE" -- GitLab