Skip to content

Commit 9704a54

Browse files
authored
.gitlab-ci.yml: mark some conditionally when: manual jobs as never (#56)
`when: manual` leads to full pipelines being in "blocked" status. Apparently, we'd need to enable `allow_failure` to unblock those. This is an alternative approach.
1 parent f687a0f commit 9704a54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ eic:
399399
PLATFORM: linux/amd64
400400
rules:
401401
- if: '$ENV != "ci" && $CI_PIPELINE_SOURCE == "trigger"'
402-
when: manual
402+
when: never
403403
- when: always
404404
extends: .build
405405
stage: eic
@@ -528,7 +528,7 @@ user_spack_environment:
528528
rules:
529529
# Only eic_ci container is built for external trigger
530530
- if: '$CI_PIPELINE_SOURCE == "trigger"'
531-
when: manual
531+
when: never
532532
- when: always
533533
needs:
534534
- job: version

0 commit comments

Comments
 (0)