ed24394361
Setup repository using zuul-cloner instead of hacking integration test call git clone. Change-Id: I828c1875e5f008fa55b693ad210421794395f623 Depends-On: I3b6180b6b274966de63fe281021ff9f4186a929b
21 lines
559 B
YAML
21 lines
559 B
YAML
- job-template:
|
|
name: gate-hacking-integration-{target-project}
|
|
node: bare-trusty
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- shell: |
|
|
#!/bin/bash -eux
|
|
cd $WORKSPACE
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack-dev/hacking \
|
|
{target-org}/{target-project}
|
|
cd openstack-dev/hacking
|
|
tox -e integration {target-org} {target-project} \
|
|
$WORKSPACE/{target-org}/{target-project}
|
|
|
|
publishers:
|
|
- console-log
|