45dd2cb40e
The intent is to replace the devstack shell script with a python utility which would be easy to reuse. Change-Id: I3c8748e2544af80e72fdd0b2e3627b4fc2212c01
17 lines
468 B
YAML
17 lines
468 B
YAML
# vim: ft=yaml
|
|
#
|
|
# Example clone map for Zuul cloner
|
|
#
|
|
# By default it would clone projects under the directory specified by its
|
|
# option --basepath, but you can override this behavior by definining per
|
|
# project destinations.
|
|
clonemap:
|
|
|
|
# Clone project 'mediawiki/core' directly in {basepath}
|
|
- name: 'mediawiki/core'
|
|
dest: '.'
|
|
|
|
# Clone projects below mediawiki/extensions to {basepath}/extensions/
|
|
- name: 'mediawiki/extensions/(.*)'
|
|
dest: 'extensions/\1'
|