15312b86db
This patch renames many projects that were in the stackforge namespace and moves them to the openstack namespace. Input for this process was derived from community collaboration resulting in this set of two lists: https://wiki.openstack.org/w/index.php?title=Stackforge_Namespace_Retirement&oldid=92717 Uses data/stackforge-renames in patchset 36 of https://review.openstack.org/#/c/228002/ as input to the script in patchset 36 of https://review.openstack.org/#/c/228002/ Change-Id: I5d41b8268b9472aef78dce810ac30ee959ae8d42
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
- job-template:
|
|
name: '{pipeline}-senlin-dsvm-functional{branch-designator}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 125
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=120
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
export PROJECTS="openstack/senlin $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin senlin https://git.openstack.org/stackforge/senlin"
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_service sl-api sl-eng"
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/senlin/senlin/tests/functional/
|
|
./post_test_hook.sh
|
|
}}
|
|
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
|