2017-09-25 09:55:24 -05:00
|
|
|
- hosts: all
|
|
|
|
name: Autoconverted job legacy-periodic-neutron-dynamic-routing-dsvm-tempest-with-ryu-master-scenario-ipv4
|
|
|
|
from old job periodic-neutron-dynamic-routing-dsvm-tempest-with-ryu-master-scenario-ipv4
|
|
|
|
tasks:
|
|
|
|
|
2017-09-27 07:21:48 -05:00
|
|
|
- name: Ensure legacy workspace directory
|
|
|
|
file:
|
|
|
|
path: '{{ ansible_user_dir }}/workspace'
|
|
|
|
state: directory
|
|
|
|
|
2017-09-25 09:55:24 -05:00
|
|
|
- shell:
|
|
|
|
cmd: |
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
cat > clonemap.yaml << EOF
|
|
|
|
clonemap:
|
2019-04-19 19:29:57 +00:00
|
|
|
- name: openstack/devstack-gate
|
2017-09-25 09:55:24 -05:00
|
|
|
dest: devstack-gate
|
|
|
|
EOF
|
|
|
|
/usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
|
2019-04-19 19:29:57 +00:00
|
|
|
https://opendev.org \
|
|
|
|
openstack/devstack-gate
|
2017-09-25 09:55:24 -05:00
|
|
|
executable: /bin/bash
|
2017-09-27 07:21:48 -05:00
|
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
2017-09-25 09:55:24 -05:00
|
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
|
|
|
|
- shell:
|
|
|
|
cmd: |
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="^neutron_dynamic_routing.tests.tempest.scenario.ipv4\."
|
|
|
|
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
|
|
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
|
|
export BRANCH_OVERRIDE=master
|
|
|
|
if [[ "$BRANCH_OVERRIDE" != "default" ]] ; then
|
|
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
|
|
fi
|
|
|
|
export PROJECTS="openstack/neutron-dynamic-routing $PROJECTS"
|
|
|
|
DEVSTACK_LOCAL_CONFIG="NEUTRON_CREATE_INITIAL_NETWORKS=False"
|
2019-04-19 19:29:57 +00:00
|
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing"
|
2017-09-25 09:55:24 -05:00
|
|
|
if [[ "ipv4" == "basic" ]]; then
|
|
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"BGP_SCHEDULER_DRIVER=neutron_dynamic_routing.services.bgp.scheduler.bgp_dragent_scheduler.ChanceScheduler"
|
|
|
|
fi
|
|
|
|
export DEVSTACK_LOCAL_CONFIG
|
|
|
|
|
|
|
|
function gate_hook {
|
|
|
|
local ryu_path=$BASE/new/ryu_master
|
|
|
|
if [[ ! -d $ryu_path ]]; then
|
|
|
|
git clone https://github.com/osrg/ryu $ryu_path
|
|
|
|
fi
|
|
|
|
sudo pip install -e $ryu_path
|
|
|
|
bash -xe $BASE/new/neutron-dynamic-routing/neutron_dynamic_routing/tests/contrib/gate_hook.sh dsvm-scenario
|
|
|
|
}
|
|
|
|
export -f gate_hook
|
|
|
|
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
executable: /bin/bash
|
2017-09-27 07:21:48 -05:00
|
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
2017-09-25 09:55:24 -05:00
|
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|