b95f12ed8f
This change was added in OpenStack's base job as part of the effort to provide a standard interface on the remote nodes into which logs can be put regardless of how they are eventually going to be uploaded. Change-Id: I07f1a88f357c68d3deeadf7f12b1b77fc4a948f4
29 lines
813 B
YAML
29 lines
813 B
YAML
- job:
|
|
name: base
|
|
parent: null
|
|
description: |
|
|
The recommended base job.
|
|
|
|
All jobs ultimately inherit from this. It runs a pre-playbook
|
|
which copies all of the job's prepared git repos on to all of
|
|
the nodes in the nodeset.
|
|
|
|
It also sets a default timeout value (which may be overidden).
|
|
pre-run: playbooks/base/pre.yaml
|
|
post-run: playbooks/base/post.yaml
|
|
roles:
|
|
- zuul: git.zuul-ci.org/zuul-jobs
|
|
timeout: 1800
|
|
|
|
- job:
|
|
name: base-test
|
|
parent: null
|
|
description: |
|
|
A job to test changes to the base job without disturbing the
|
|
main job in production. Not for general use.
|
|
pre-run: playbooks/base-test/pre.yaml
|
|
post-run: playbooks/base-test/post.yaml
|
|
roles:
|
|
- zuul: git.zuul-ci.org/zuul-jobs
|
|
timeout: 1800
|