Skip to content
Snippets Groups Projects
Commit 4d931b91 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin
Browse files

feat: don't trigger benchmarks for nightly container builds

Nightly containers are already tested when benchmark changes are ran through the CI. This avoids some unnecessary jobs.
parent 506b4919
No related branches found
No related tags found
1 merge request!952feat: don't trigger benchmarks for nightly container builds
This commit is part of merge request !952. Comments created here will be created in the context of that merge request.
...@@ -511,6 +511,7 @@ jug_xl:singularity:nightly: ...@@ -511,6 +511,7 @@ jug_xl:singularity:nightly:
allow_failure: false allow_failure: false
benchmarks:detector:default: benchmarks:detector:default:
if: '$CI_PIPELINE_SOURCE != "schedule"'
extends: .benchmarks extends: .benchmarks
variables: variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-default" BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
...@@ -519,6 +520,7 @@ benchmarks:detector:default: ...@@ -519,6 +520,7 @@ benchmarks:detector:default:
strategy: depend strategy: depend
benchmarks:detector:nightly: benchmarks:detector:nightly:
if: '$CI_PIPELINE_SOURCE != "schedule"'
extends: .benchmarks extends: .benchmarks
rules: rules:
- !reference ['.nightly', rules] - !reference ['.nightly', rules]
...@@ -529,6 +531,7 @@ benchmarks:detector:nightly: ...@@ -529,6 +531,7 @@ benchmarks:detector:nightly:
strategy: depend strategy: depend
benchmarks:phyiscs:default: benchmarks:phyiscs:default:
if: '$CI_PIPELINE_SOURCE != "schedule"'
extends: .benchmarks extends: .benchmarks
variables: variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-default" BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
...@@ -537,6 +540,7 @@ benchmarks:phyiscs:default: ...@@ -537,6 +540,7 @@ benchmarks:phyiscs:default:
strategy: depend strategy: depend
benchmarks:physics:nightly: benchmarks:physics:nightly:
if: '$CI_PIPELINE_SOURCE != "schedule"'
extends: .benchmarks extends: .benchmarks
rules: rules:
- !reference ['.nightly', rules] - !reference ['.nightly', rules]
...@@ -547,6 +551,7 @@ benchmarks:physics:nightly: ...@@ -547,6 +551,7 @@ benchmarks:physics:nightly:
strategy: depend strategy: depend
benchmarks:reconstruction:default: benchmarks:reconstruction:default:
if: '$CI_PIPELINE_SOURCE != "schedule"'
extends: .benchmarks extends: .benchmarks
variables: variables:
BENCHMARKS_TAG: "${INTERNAL_TAG}-default" BENCHMARKS_TAG: "${INTERNAL_TAG}-default"
...@@ -555,6 +560,7 @@ benchmarks:reconstruction:default: ...@@ -555,6 +560,7 @@ benchmarks:reconstruction:default:
strategy: depend strategy: depend
benchmarks:reconstruction:nightly: benchmarks:reconstruction:nightly:
if: '$CI_PIPELINE_SOURCE != "schedule"'
extends: .benchmarks extends: .benchmarks
rules: rules:
- !reference ['.nightly', rules] - !reference ['.nightly', rules]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment