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
35 lines
1013 B
YAML
35 lines
1013 B
YAML
- job-template:
|
|
name: '{pipeline}-tempest-dsvm-swift3{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 DEVSTACK_GATE_TEMPEST=1
|
|
# Construct a regex to limiting scope of tempest
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="tempest.thirdparty.boto"
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
export PROJECTS="openstack/swift3 $PROJECTS"
|
|
export ENABLED_SERVICES+=,swift3
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|