project-config/jenkins/jobs/oslo.yaml
Jeremy Stanley 0af9b2c178 Get rid of precise||trusty job node declarations
Between the Icehouse and Juno releases, OpenStack changed its
supported Ubuntu LTS platform from Precise to Trusty. In support of
continuing testing stable/icehouse and prior branches on Precise
while starting to test newer branches on Trusty, a branch-based
decision tree was introduced into our Zuul configuration by way of
complex parameter functions with an ever growing list of regular
expression matches on job names.

Now that Icehouse is EOL (in fact, Juno is too) this simply adds
unnecessary complexity and an attractive nuisance for cargo-cult
copying into new job and job-template definitions which don't even
need it. In preparation to remove the associated parameter
functions, get rid of multiple labels in all jobs and set them to
whatever label Zuul would ultimately select.

This change touches a vast number, possibly a majority, of our jobs
and so manual jenkins-jobs updates on all Jenkins masters will be
needed after this merges, before it's safe to approve the
corresponding Zuul configuration cleanup.

Change-Id: Ic952ee02da2c77fe2ace81c4e2fa87531be6119c
2015-12-21 20:52:17 +00:00

103 lines
2.9 KiB
YAML

- job-template:
name: '{pipeline}-{injectedlib}-dsvm-{name}{job-suffix}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 95
- timestamps
builders:
- print-template-name:
template-name: "{template-name}"
- 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:
- print-template-name:
template-name: "{template-name}"
- 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-trusty
# job-suffix: ''
# branch-override: default
# - '{pipeline}-{injectedlib}-dsvm-{name}{job-suffix}':
# pipeline: gate
# node: devstack-trusty
# job-suffix: ''
# branch-override: default