Merge "Resume paused job with skipped children"

This commit is contained in:
Zuul
2018-11-06 16:30:03 +00:00
committed by Gerrit Code Review
9 changed files with 145 additions and 32 deletions

View File

@@ -0,0 +1 @@
test

View File

@@ -0,0 +1,7 @@
- hosts: all
tasks:
- name: Pause and let child run
zuul_return:
data:
zuul:
pause: true

View File

@@ -0,0 +1,4 @@
- hosts: all
tasks:
- fail:
msg: pre-test fails

View File

@@ -0,0 +1,4 @@
- hosts: all
tasks:
- debug:
msg: Dummy

View File

@@ -0,0 +1,22 @@
- job:
name: compile
run: playbooks/compile.yaml
- job:
name: test
run: playbooks/test.yaml
- job:
name: pre-test
run: playbooks/pre-test.yaml
- project:
check:
jobs:
- compile
- pre-test
- test:
dependencies:
- compile
- pre-test

View File

@@ -6,3 +6,4 @@
- common-config
- org/project
- org/project2
- org/project3