b9a9ea900a
This is a job that runs bashate against devstack. Just push it ahead to run on Xenial since bashate only has a master branch. Change-Id: Ib78ab51bc6ad78ae5695a85f45e72592be621846
35 lines
807 B
YAML
35 lines
807 B
YAML
- job:
|
|
# run bashate changes over devstack & devstack-gate
|
|
name: 'gate-bashate-devstack'
|
|
node: ubuntu-xenial
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 60
|
|
|
|
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-dev/bashate \
|
|
openstack-dev/devstack \
|
|
openstack-infra/devstack-gate
|
|
|
|
export BASHATE_INSTALL_PATH=$WORKSPACE/openstack-dev/bashate
|
|
|
|
pushd openstack-dev/devstack
|
|
tox -e bashate
|
|
popd
|
|
|
|
pushd openstack-infra/devstack-gate
|
|
tox -e bashate
|
|
popd
|
|
|
|
publishers:
|
|
- console-log
|