debian-mirror-gitlab/spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true_deploy_always.yml
2021-04-17 20:07:23 +05:30

24 lines
336 B
YAML

config:
test:
stage: test
when: manual
allow_failure: true
script: exit 1
deploy:
stage: deploy
when: always
script: exit 0
needs: [test]
init:
expect:
pipeline: pending
stages:
test: skipped
deploy: pending
jobs:
test: manual
deploy: pending
transitions: []