Files
bashate/playbooks/legacy/bashate-devstack/run.yaml
OpenDev Sysadmins 0bb06cc9bb OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:26:29 +00:00

38 lines
922 B
YAML

- hosts: all
name: Autoconverted job legacy-bashate-devstack from old job gate-bashate-devstack
roles:
- bindep
tasks:
- name: Ensure legacy workspace directory
file:
path: '{{ ansible_user_dir }}/workspace'
state: directory
- shell:
cmd: |
set -u
set -e
set -x
cd $WORKSPACE
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
https://opendev.org \
openstack/bashate \
openstack/devstack \
openstack/devstack-gate
export BASHATE_INSTALL_PATH=$WORKSPACE/openstack/bashate
pushd openstack/devstack
tox -e bashate
popd
pushd openstack/devstack-gate
tox -e bashate
popd
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'