a84e7ae506
- renames the base job that is for dsvm jobs - removes the unused legacy branch override stuff - moves the comment about keeping the jobs sorted Change-Id: Idf20864fe3371e4bbafb8c18bcf979a8f3c3eb62
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
- hosts: all
|
|
name: nova-multiattach
|
|
tasks:
|
|
|
|
- name: Ensure 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
|
|
cat << 'EOF' >>"/tmp/dg-local.conf"
|
|
[[local|localrc]]
|
|
ENABLE_VOLUME_MULTIATTACH=True
|
|
ENABLE_UBUNTU_CLOUD_ARCHIVE=False
|
|
|
|
EOF
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
export PYTHONUNBUFFERED=true
|
|
# Yes we want to run Tempest.
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
# Only run compute API tests; note that this will need to
|
|
# be updated if multiattach scenario tests are ever added.
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="api.compute"
|
|
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 }}'
|