a983698208
Another little fix that should finally make zuul-cloner work there. Change-Id: I9ff04a610829f6ad97e176ddc79920587e2d0226
28 lines
677 B
YAML
28 lines
677 B
YAML
- builder:
|
|
name: clone-fuel-ccp
|
|
builders:
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
cd "$WORKSPACE"
|
|
cat > clonemap.yaml << EOF
|
|
clonemap:
|
|
- name: openstack/fuel-ccp
|
|
dest: fuel-ccp
|
|
EOF
|
|
/usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack/fuel-ccp
|
|
|
|
- job:
|
|
name: gate-fuel-ccp-validate
|
|
node: ubuntu-xenial
|
|
builders:
|
|
- revoke-sudo
|
|
- clone-fuel-ccp
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
cd "$WORKSPACE/fuel-ccp/tools/gate"
|
|
./run.sh
|
|
publishers:
|
|
- console-log
|