summaryrefslogtreecommitdiff
path: root/tests/fixtures/layouts/circular-deps-node-failure.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures/layouts/circular-deps-node-failure.yaml')
-rw-r--r--tests/fixtures/layouts/circular-deps-node-failure.yaml62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/fixtures/layouts/circular-deps-node-failure.yaml b/tests/fixtures/layouts/circular-deps-node-failure.yaml
new file mode 100644
index 000000000..244449b82
--- /dev/null
+++ b/tests/fixtures/layouts/circular-deps-node-failure.yaml
@@ -0,0 +1,62 @@
+- queue:
+ name: integrated
+ allow-circular-dependencies: true
+
+- pipeline:
+ name: gate
+ manager: dependent
+ success-message: Build succeeded (gate).
+ require:
+ gerrit:
+ approval:
+ - Approved: 1
+ trigger:
+ gerrit:
+ - event: comment-added
+ approval:
+ - Approved: 1
+ success:
+ gerrit:
+ Verified: 2
+ submit: true
+ failure:
+ gerrit:
+ Verified: -2
+ start:
+ gerrit:
+ Verified: 0
+ precedence: high
+
+- job:
+ name: base
+ parent: null
+ run: playbooks/run.yaml
+ nodeset:
+ nodes:
+ - label: debian
+ name: controller
+
+- job:
+ name: common-job
+
+- job:
+ name: project1-job
+
+- job:
+ name: project2-job
+
+- project:
+ name: org/project1
+ queue: integrated
+ gate:
+ jobs:
+ - common-job
+ - project1-job
+
+- project:
+ name: org/project2
+ queue: integrated
+ gate:
+ jobs:
+ - common-job
+ - project2-job