2016-01-13 11:29:15 -06:00
|
|
|
- job-template:
|
|
|
|
name: gate-bandit-integration-{target-project}
|
2016-03-08 20:44:05 +01:00
|
|
|
node: ubuntu-trusty
|
2016-01-13 11:29:15 -06:00
|
|
|
|
|
|
|
builders:
|
|
|
|
- link-logs
|
2016-03-08 20:44:05 +01:00
|
|
|
- install-distro-packages
|
2016-01-13 11:29:15 -06:00
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -eux
|
|
|
|
cd $WORKSPACE
|
|
|
|
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
|
|
git://git.openstack.org \
|
|
|
|
openstack/bandit \
|
|
|
|
{target-org}/{target-project}
|
|
|
|
|
|
|
|
cd $WORKSPACE/openstack/bandit
|
|
|
|
|
|
|
|
tox -e integration {target-org} {target-project} \
|
|
|
|
$WORKSPACE/{target-org}/{target-project}
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- console-log
|