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
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
- job-template:
|
|
name: '{pipeline}-sqlalchemy-migrate-devstack-dsvm{branch-designator}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 185
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=180
|
|
export PROJECTS="openstack/sqlalchemy-migrate $PROJECTS"
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_FULL=1
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
function pre_test_hook {{
|
|
cd /opt/stack/new/sqlalchemy-migrate
|
|
sudo -H pip install .
|
|
}}
|
|
export -f pre_test_hook
|
|
|
|
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
|