1fe13f64d2
Convert gate-hacking-integration-{target-project} to use ubuntu-trusty instead of bare-trusty. Change-Id: I3d2d65d5a2e068efb477c4a6b2c0b67376e42653
22 lines
593 B
YAML
22 lines
593 B
YAML
- job-template:
|
|
name: gate-hacking-integration-{target-project}
|
|
node: ubuntu-trusty
|
|
|
|
builders:
|
|
- install-distro-packages
|
|
- 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
|