Make it possible to configure job retries with zuul_return

Change-Id: Ie209b6e9a4b9192f4e53e73022d4549611cd230c
This commit is contained in:
Albin Vass
2022-02-24 16:18:22 +01:00
parent 463cd1615b
commit 98bda7c3e3
10 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
- hosts: localhost
tasks: []

View File

@@ -0,0 +1,7 @@
- hosts: localhost
tasks:
- zuul_return:
data:
zuul:
retry: false
failed_when: true

View File

@@ -120,6 +120,11 @@
parent: several-zuul-return-parent
run: playbooks/several-zuul-return-child.yaml
- job:
name: skip-retry-return
pre-run: playbooks/skip-retry-return.yaml
run: playbooks/pass.yaml
- project:
name: org/project
check:
@@ -224,3 +229,9 @@
soft: true
- name: data-return-c
soft: true
- project:
name: org/project-skip-retry
check:
jobs:
- skip-retry-return

View File

@@ -0,0 +1 @@
test

View File

@@ -14,3 +14,4 @@
- org/project6
- org/project7
- org/project-soft
- org/project-skip-retry