3c55db467e
The majority of bandit jobs run on Xenial already. Move the integration job ahead to Xenial as well. Change-Id: Iaef130c5454330f766b10f67bdb1782a7b9fa062
24 lines
593 B
YAML
24 lines
593 B
YAML
- job-template:
|
|
name: gate-bandit-integration-{target-project}
|
|
node: ubuntu-xenial
|
|
|
|
builders:
|
|
- link-logs
|
|
- install-distro-packages
|
|
- 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
|