Skip to content

Commit

Permalink
Run full pipeline for the release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tcojean committed Aug 11, 2021
1 parent bb0eca7 commit a6c68b0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ sonarqube_cov_:
sonarqube_cov:
stage: code_quality
extends:
- .deploy_condition
- .long_living_branch_condition
- .use_gko-cuda101-gnu8-llvm7-intel2019
before_script: *default_before_script
script:
Expand Down
17 changes: 16 additions & 1 deletion .gitlab/condition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
refs:
- develop
- master
- release/1.4.0
- tags
dependencies: []

.full_test_condition:
only:
variables:
- $RUN_CI_TAG && $STATUS_CONTEXT == "full"
- $RUN_CI_TAG && ($CI_COMMIT_BRANCH == "master" || $CI_COMMIT_BRANCH == "develop")
- $RUN_CI_TAG && ($CI_COMMIT_BRANCH == "master" || $CI_COMMIT_BRANCH == "develop" || $CI_COMMIT_BRANCH == "release/1.4.0" )
- $RUN_CI_TAG && $CI_COMMIT_TAG
dependencies: []

Expand All @@ -24,6 +25,20 @@
dependencies: []

.deploy_condition:
only:
refs:
- develop
- master
- release/1.4.0
- tags
variables:
- $RUN_CI_TAG
except:
- schedules
dependencies: []


.long_living_branch_condition:
only:
refs:
- develop
Expand Down

0 comments on commit a6c68b0

Please sign in to comment.