
This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: I9ff8306f34ffa9cfd524172138bc01da2aa3d3f5
57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
- hosts: all
|
|
name: Autoconverted job legacy-vitrage-dsvm-mock-py35 from old job gate-vitrage-dsvm-mock-py35-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 \
|
|
https://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 PROJECTS="openstack/python-vitrageclient $PROJECTS"
|
|
export PROJECTS="openstack/vitrage $PROJECTS"
|
|
export PROJECTS="openstack/vitrage-tempest-plugin $PROJECTS"
|
|
|
|
export DEVSTACK_GATE_USE_PYTHON3=True
|
|
|
|
function pre_test_hook {
|
|
source $BASE/new/vitrage-tempest-plugin/devstack/pre_test_hook.sh
|
|
}
|
|
export -f pre_test_hook
|
|
|
|
function gate_hook {
|
|
source $BASE/new/vitrage/devstack/gate_hook_mock.sh
|
|
}
|
|
export -f gate_hook
|
|
|
|
function post_test_hook {
|
|
source $BASE/new/vitrage-tempest-plugin/devstack/post_test_hook.sh 'mock'
|
|
}
|
|
export -f post_test_hook
|
|
|
|
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 }}'
|