Skip to content

Commit

Permalink
Don't run benchmarks in scheduled pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
ddyurchenko authored and PROFeNoM committed Dec 15, 2023
1 parent 6710b38 commit d174594
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitlab/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ variables:
microbenchmarks:
stage: benchmarks
rules:
- changes:
- if: $CI_PIPELINE_SOURCE != "schedule"
changes:
paths:
- profiling/**/*
compare_to: "master"
Expand Down Expand Up @@ -43,7 +44,7 @@ microbenchmarks:
download_circle_ci_release:
stage: benchmarks
rules:
- if: $CI_COMMIT_REF_NAME == "master"
- if: $CI_COMMIT_REF_NAME == "master" && $CI_PIPELINE_SOURCE != "schedule"
when: always
- when: manual
tags: [ "arch:amd64" ]
Expand All @@ -64,7 +65,7 @@ download_circle_ci_release:
.macrobenchmarks:
stage: benchmarks
rules:
- if: $CI_COMMIT_REF_NAME == "master"
- if: $CI_COMMIT_REF_NAME == "master" && $CI_PIPELINE_SOURCE != "schedule"
when: always
- when: manual
tags: ["runner:apm-k8s-same-cpu"]
Expand Down

0 comments on commit d174594

Please sign in to comment.