Organize playbooks folder

As we start to grow our playbooks, start grouping them by directories.

Change-Id: I487023a7a5e7dccb24843cc4a85f7f9c71c10a83
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-03-03 22:54:57 -05:00
parent 3547b695f3
commit 4a309b3a7e
11 changed files with 10 additions and 4 deletions

View File

@ -1,7 +1,7 @@
- job: - job:
name: base name: base
pre-run: base-pre pre-run: base/pre
post-run: base-post post-run: base/post
success-url: http://zuulv3-dev.openstack.org/logs/{build.uuid}/ success-url: http://zuulv3-dev.openstack.org/logs/{build.uuid}/
failure-url: http://zuulv3-dev.openstack.org/logs/{build.uuid}/ failure-url: http://zuulv3-dev.openstack.org/logs/{build.uuid}/
timeout: 1800 timeout: 1800
@ -14,25 +14,29 @@
- job: - job:
name: tox name: tox
parent: base parent: base
pre-run: tox-pre pre-run: tox/pre
post-run: tox-post post-run: tox/post
- job: - job:
name: tox-cover name: tox-cover
parent: tox parent: tox
run: tox/cover
voting: false voting: false
- job: - job:
name: tox-docs name: tox-docs
parent: tox parent: tox
run: tox/docs
- job: - job:
name: tox-linters name: tox-linters
parent: tox parent: tox
run: tox/docs
- job: - job:
name: tox-py27 name: tox-py27
parent: tox parent: tox
run: tox/py27
- project: - project:
name: openstack-infra/zuul name: openstack-infra/zuul

1
playbooks/base/roles Symbolic link
View File

@ -0,0 +1 @@
../roles/

1
playbooks/tox/roles Symbolic link
View File

@ -0,0 +1 @@
../roles/