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
99 lines
2.8 KiB
YAML
99 lines
2.8 KiB
YAML
- job-template:
|
|
name: '{pipeline}-{injectedlib}-dsvm-{name}{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 95
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=95
|
|
export PROJECTS="{injectedrepo} $PROJECTS"
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
function gate_hook {{
|
|
cd /opt/stack/new/$(basename {injectedrepo})
|
|
remaining_time
|
|
timeout -s 9 ${{REMAINING_TIME}}m ./tools/run_cross_tests.sh /opt/stack/new/{name} py27
|
|
}}
|
|
export -f gate_hook
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/{name}
|
|
mv nose_results.html $WORKSPACE/logs
|
|
mv testr_results.html.gz $WORKSPACE/logs
|
|
mv .testrepository/tmp* $WORKSPACE/logs
|
|
mv testrepository.subunit $WORKSPACE/logs
|
|
}}
|
|
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:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: '{pipeline}-oslo.messaging-dsvm-functional-{driver}{ostype}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 95
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=90
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/oslo.messaging/oslo_messaging/tests/functional/gate
|
|
./post_test_hook.sh {driver}
|
|
}}
|
|
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
|
|
|
|
# NOTE(dhellmann): This job group is not used, but I retained it as an
|
|
# example of properly using the template defined above.
|
|
#
|
|
# - job-group:
|
|
# name: oslotest-cross-test
|
|
#
|
|
# injectedlib: oslotest
|
|
# injectedrepo: openstack/oslotest
|
|
#
|
|
# jobs:
|
|
# - '{pipeline}-{injectedlib}-dsvm-{name}{job-suffix}':
|
|
# pipeline: check
|
|
# node: 'devstack-precise || devstack-trusty'
|
|
# job-suffix: ''
|
|
# branch-override: default
|
|
# - '{pipeline}-{injectedlib}-dsvm-{name}{job-suffix}':
|
|
# pipeline: gate
|
|
# node: 'devstack-precise || devstack-trusty'
|
|
# job-suffix: ''
|
|
# branch-override: default
|