UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Release 1.1

Merged joshwolf requested to merge release-1.1 into master
12 files
+ 616
157
Compare changes
  • Side-by-side
  • Inline
Files
12
+ 0
10
@@ -187,10 +187,6 @@ upgrade:
.infra fork:
stage: network up
rules:
# run infrastructure pipelines only on merges into release branches, and run regardless of failure
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^release*/'
allow_failure: false
when: manual
# Run on scheduled jobs
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "master"'
allow_failure: false
@@ -198,18 +194,12 @@ upgrade:
# Abstract for jobs responsible for creating infrastructure
.infra create:
rules:
# run infrastructure pipelines only on merges into release branches
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^release*/'
# Run on scheduled jobs
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "master"'
# Abstract for jobs responsible for cleaning up infrastructure
.infra cleanup:
rules:
# run infrastructure pipelines only on merges into release branches, and run regardless of failure
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^release*/'
allow_failure: true
when: always
# Run on scheduled jobs
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "master"'
allow_failure: true
Loading