bd882cdd7a
As clarkb suggested on #openstack-infra at 17:46 2015-10-22: "maybe we should s/branch-designator/job-suffix/g in all those files as job-suffix makes more sense considering how branch-designator has been used". The rename should make it easier for newcomers to understand these jobs. This renames branch-designator everywhere in jenkins/jobs/*. Change-Id: Icb11271b958d92957fb9907ff03c0b898d7b76fc
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
- job-template:
|
|
name: '{pipeline}-novaclient-dsvm-functional{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 65
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
export PROJECTS="openstack/python-novaclient $PROJECTS"
|
|
export DEVSTACK_PROJECT_FROM_GIT=python-novaclient
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
function post_test_hook {{
|
|
# Configure and run functional tests
|
|
$BASE/new/python-novaclient/novaclient/tests/functional/hooks/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
|