f401b6f538
Run bashate changes over devstack-gate too, so we can be sure we don't release changes that break it Change-Id: I8b03f13e9c59b844d33d71b32c62d1216615a34b Depends-On: Id907a566e046ed65f7e02776f2be4382829afe8e
35 lines
807 B
YAML
35 lines
807 B
YAML
- job:
|
|
# run bashate changes over devstack & devstack-gate
|
|
name: 'gate-bashate-devstack'
|
|
node: ubuntu-trusty
|
|
|
|
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
|