4bcddbcef6
Failure: http://paste.openstack.org/show/590615/ From Newton version, Tacker leverages networking-sfc project for VNF Forwarding Graph (VNFFG) feature. netoworking-sfc plugin already enabled in tacker.yaml. Because xenial node itself supports OVS, this could makes conflict with the OVS version in networking-sfc. Change-Id: I2c25eb36b414cbe3373ff3f336e4200f4cc0c348
54 lines
2.1 KiB
YAML
54 lines
2.1 KiB
YAML
- job-template:
|
|
name: '{pipeline}-tacker-dsvm-functional-{node}{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 130
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
export SFC_UPDATE_OVS=False
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
export PROJECTS="openstack/tacker $PROJECTS"
|
|
export PROJECTS="openstack/tacker-horizon $PROJECTS"
|
|
export PROJECTS="openstack/python-tackerclient $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin tacker git://git.openstack.org/openstack/tacker"
|
|
case "$ZUUL_BRANCH" in
|
|
stable/liberty|stable/mitaka) break;;
|
|
*)
|
|
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin heat git://git.openstack.org/openstack/heat"
|
|
export PROJECTS="openstack/heat $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin aodh git://git.openstack.org/openstack/aodh"
|
|
export PROJECTS="openstack/aodh $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer"
|
|
export PROJECTS="openstack/ceilometer $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin networking-sfc http://git.trystack.cn/openstack/networking-sfc"
|
|
export PROJECTS="openstack/networking-sfc $PROJECTS"
|
|
esac
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
function post_test_hook {{
|
|
bash -xe $BASE/new/tacker/tacker/tests/contrib/post_test_hook.sh dsvm-functional
|
|
}}
|
|
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
|
|
|
|
publishers:
|
|
- test-results
|
|
- devstack-logs
|
|
- console-log
|