Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2023-02-17 12:04:39 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2023-02-17 12:07:47 +0300
commit2d0e1c69c5464e527e2db77cb7906074ab225e63 (patch)
tree9930eab9857ead2f44b8a8c77e2f702be7a35f32
parentb7f5e56e554912f4d81e59c0ab22e203f3eb087b (diff)
Remove deprecated $CLEAN_REVIEW_APPS_DAYS rule
We no longer use the $CLEAN_REVIEW_APPS_DAYS variable since the switch to GCP buckets for review apps.
-rw-r--r--.gitlab/ci/rules.gitlab-ci.yml14
1 files changed, 6 insertions, 8 deletions
diff --git a/.gitlab/ci/rules.gitlab-ci.yml b/.gitlab/ci/rules.gitlab-ci.yml
index 8b47e5ac..9914236d 100644
--- a/.gitlab/ci/rules.gitlab-ci.yml
+++ b/.gitlab/ci/rules.gitlab-ci.yml
@@ -63,7 +63,7 @@ default:
#
.rules_scheduled:
rules:
- - if: $CHORES_PIPELINE == "true" || $CLEAN_REVIEW_APPS_DAYS
+ - if: $CHORES_PIPELINE == "true"
when: never
- if: '$CI_PIPELINE_SOURCE != "schedule"'
when: never
@@ -80,7 +80,7 @@ default:
.rules_scheduled_manual:
rules:
- - if: $CHORES_PIPELINE == "true" || $CLEAN_REVIEW_APPS_DAYS
+ - if: $CHORES_PIPELINE == "true"
when: never
- if: '$CI_PIPELINE_SOURCE == "schedule"'
when: manual
@@ -88,15 +88,13 @@ default:
.rules_chores:
rules:
- - if: '$CLEAN_REVIEW_APPS_DAYS'
- when: never
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CHORES_PIPELINE == "true"'
when: manual
allow_failure: true
.rules_site_tests:
rules:
- - if: $CHORES_PIPELINE == "true" || $CLEAN_REVIEW_APPS_DAYS
+ - if: $CHORES_PIPELINE == "true"
when: never
# Don't run site tests for review apps.
- if: '$CI_PIPELINE_SOURCE == "pipeline" || $CI_PIPELINE_SOURCE == "trigger"'
@@ -108,7 +106,7 @@ default:
.rules_global_nav_test:
rules:
- - if: $CHORES_PIPELINE == "true" || $CLEAN_REVIEW_APPS_DAYS
+ - if: $CHORES_PIPELINE == "true"
when: never
- if: '$CI_PIPELINE_SOURCE == "pipeline" || $CI_PIPELINE_SOURCE == "trigger"'
when: never
@@ -119,7 +117,7 @@ default:
.rules_prod:
rules:
- - if: $CHORES_PIPELINE == "true" || $CLEAN_REVIEW_APPS_DAYS
+ - if: $CHORES_PIPELINE == "true"
when: never
# Don't deploy to production for trigerred pipelines (usually review apps)
- if: '$CI_PIPELINE_SOURCE == "pipeline" || $CI_PIPELINE_SOURCE == "trigger"'
@@ -145,7 +143,7 @@ default:
.rules_pages:
rules:
- - if: $CHORES_PIPELINE == "true" || $CLEAN_REVIEW_APPS_DAYS
+ - if: $CHORES_PIPELINE == "true"
when: never
# Don't deploy to production for trigerred pipelines (usually review apps)
- if: '$CI_PIPELINE_SOURCE == "pipeline"|| $CI_PIPELINE_SOURCE == "trigger"'