diff --git a/Release-Latest.gitlab-ci.yml b/Release-Latest.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..47372901b3388a911dad147178260a332c424d35 --- /dev/null +++ b/Release-Latest.gitlab-ci.yml @@ -0,0 +1,57 @@ +include: + - project: 'gitlab/auto-devops' + file: 'Auto-DevOps.gitlab-ci.yml' + ref: main + +########################################################################################################## + +## PIPELINE DEFINITION + +variables: + BROWSER_PERFORMANCE_DISABLED: 1 + LOAD_PERFORMANCE_DISABLED: 1 + REVIEW_DISABLED: 1 + +########################################################################################################## + +### DISABLE RULES + +staging: + rules: + - when: never + +canary: + rules: + - when: never + +production: + rules: + - when: never + +production_manual: + rules: + - when: never + +.manual_rollout_template: &manual_rollout_template + rules: + - when: never + +.timed_rollout_template: &timed_rollout_template + rules: + - when: never + +########################################################################################################## + +### CHANGE RULES + +test: + rules: + - if: '$TEST_DISABLED' + when: never + - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH' + +code_quality: + rules: + - if: '$CODE_QUALITY_DISABLED' + when: never + - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'