7cca702336
We encourage people to integrate zuul-jobs with the Git connection driver, but the recommended canonical name for it is git.zuul-ci.org/zuul-jobs which is not namespaced and so wouldn't show up through the corresponding connection. Switch the example base and base-test jobs to the recommended name to make them consistent with this expectation. Change-Id: Ifa307d6b4f7f2e69a5811a6907e0df56dfe40cb2
29 lines
821 B
YAML
29 lines
821 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-ssh.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-ssh.yaml
|
|
roles:
|
|
- zuul: git.zuul-ci.org/zuul-jobs
|
|
timeout: 1800
|