Skip to content

Commit

Permalink
feat: don't trigger benchmarks for nightly container builds
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl committed Jul 8, 2024
1 parent 506b491 commit c7532d9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,8 @@ jug_xl:singularity:nightly:

benchmarks:detector:default:
extends: .benchmarks
rules:
- if: '$CI_PIPELINE_SOURCE != "schedule"'
variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
trigger:
Expand All @@ -521,6 +523,7 @@ benchmarks:detector:default:
benchmarks:detector:nightly:
extends: .benchmarks
rules:
- if: '$CI_PIPELINE_SOURCE != "schedule"'
- !reference ['.nightly', rules]
variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
Expand All @@ -530,6 +533,8 @@ benchmarks:detector:nightly:

benchmarks:phyiscs:default:
extends: .benchmarks
rules:
- if: '$CI_PIPELINE_SOURCE != "schedule"'
variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
trigger:
Expand All @@ -539,6 +544,7 @@ benchmarks:phyiscs:default:
benchmarks:physics:nightly:
extends: .benchmarks
rules:
- if: '$CI_PIPELINE_SOURCE != "schedule"'
- !reference ['.nightly', rules]
variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
Expand All @@ -548,6 +554,8 @@ benchmarks:physics:nightly:

benchmarks:reconstruction:default:
extends: .benchmarks
rules:
- if: '$CI_PIPELINE_SOURCE != "schedule"'
variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
trigger:
Expand All @@ -557,6 +565,7 @@ benchmarks:reconstruction:default:
benchmarks:reconstruction:nightly:
extends: .benchmarks
rules:
- if: '$CI_PIPELINE_SOURCE != "schedule"'
- !reference ['.nightly', rules]
variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-nightly"
Expand Down

0 comments on commit c7532d9

Please sign in to comment.