065a80d9c2
With change Iff5e96bd80b8f165ccc7d6be09b53208613571eb, we do not need to pass DEVSTACK_GATE_TIMEOUT anymore to devstack-gate, instead the value from the build-timeout wrapper is passed. Remove DEVSTACK_GATE_TIMEOUT for jenkins/jobs/[n-z]*.yaml Increase timeout for all non-grenade jobs by 5 mins since Iea866e4cc40e149e598f35e010ec855937bdf9ae will use a 10 minute buffer and the internal timeout should stay the same. The grenade jobs already have 10 mins of buffer, so no need adjust the timeout. Adjust timeout for gate-rally-dsvm-cue-{broker}, the removed variable in builder devstack-cue-rally-gate was 100, so set timeout to 110. Change-Id: I623fff029fb2e0acdbe2bf93a13af02547062a71
93 lines
2.4 KiB
YAML
93 lines
2.4 KiB
YAML
- job:
|
|
name: gate-tempest-dsvm-docker
|
|
node: devstack-trusty
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 70
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
function gate_hook {
|
|
$BASE/new/nova-docker/contrib/devstack/gate_hook.sh
|
|
}
|
|
|
|
export -f gate_hook
|
|
|
|
function pre_test_hook {
|
|
if [ -f $BASE/new/nova-docker/contrib/devstack/pre_test_hook.sh ] ; then
|
|
$BASE/new/nova-docker/contrib/devstack/pre_test_hook.sh
|
|
fi
|
|
}
|
|
|
|
export -f pre_test_hook
|
|
|
|
function post_test_hook {
|
|
if [ -f $BASE/new/nova-docker/contrib/devstack/post_test_hook.sh ] ; then
|
|
$BASE/new/nova-docker/contrib/devstack/post_test_hook.sh
|
|
fi
|
|
}
|
|
|
|
export -f post_test_hook
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
export PROJECTS="openstack/nova-docker $PROJECTS"
|
|
|
|
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:
|
|
name: gate-tempest-dsvm-docker-centos7
|
|
node: 'devstack-centos7'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 70
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
function gate_hook {
|
|
$BASE/new/nova-docker/contrib/devstack/gate_hook.sh
|
|
}
|
|
|
|
export -f gate_hook
|
|
|
|
function pre_test_hook {
|
|
if [ -f $BASE/new/nova-docker/contrib/devstack/pre_test_hook.sh ] ; then
|
|
$BASE/new/nova-docker/contrib/devstack/pre_test_hook.sh
|
|
fi
|
|
}
|
|
|
|
export -f pre_test_hook
|
|
|
|
function post_test_hook {
|
|
if [ -f $BASE/new/nova-docker/contrib/devstack/post_test_hook.sh ] ; then
|
|
$BASE/new/nova-docker/contrib/devstack/post_test_hook.sh
|
|
fi
|
|
}
|
|
|
|
export -f post_test_hook
|
|
export PYTHONUNBUFFERED=true
|
|
export PROJECTS="openstack/nova-docker $PROJECTS"
|
|
|
|
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
|