os-vif/playbooks/os-vif-ovs/run.yaml
Sean Mooney afee563d00 move legacy-tempest-dsvm-nova-os-vif to repo
- This change ports the legacy-tempest-dsvm-nova-os-vif
  job to be in repo as os-vif-ovs.
- The os-vif-ovs will be converted
  to use the non legacy workflow in a follow up commit.
- This change adds os-vif-ovs
  to the gate and check pipelines.
- legacy-tempest-dsvm-nova-os-vif will be removed
  form the os-vif jobs in project-config in a follow up
  commit.

Change-Id: Ida41a4ec5602482406c7401621498deeee9f1b8b
2018-07-06 08:08:54 +02:00

41 lines
1.3 KiB
YAML

- hosts: all
name: Autoconverted job legacy-tempest-dsvm-nova-os-vif from old job gate-tempest-dsvm-nova-os-vif-ubuntu-xenial-nv
tasks:
- name: Ensure legacy workspace directory
file:
path: '{{ ansible_user_dir }}/workspace'
state: directory
- shell:
cmd: |
set -e
set -x
cat > clonemap.yaml << EOF
clonemap:
- name: openstack-infra/devstack-gate
dest: devstack-gate
EOF
/usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
git://git.openstack.org \
openstack-infra/devstack-gate
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'
- shell:
cmd: |
set -e
set -x
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_TEMPEST_FULL=1
# enable to use os-vif for Nova
export DEVSTACK_PROJECT_FROM_GIT="os-vif"
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'