03678429e4
Increase the Jenkins timeout by 5 minutes, and supply the intended timeout value to devstack-gate as an env variable. This will allow devstack-gate to timeout the gate job and have 5 minutes to copy logs. Change-Id: Iac0475e8c885274a3ff41adb4affb1499680a87e
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
- job-template:
|
|
name: '{pipeline}-requirements-integration-dsvm'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 125
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=120
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
export DEVSTACK_GATE_EXERCISES=0
|
|
export DEVSTACK_GATE_REQS_INTEGRATION=1
|
|
function gate_hook {{
|
|
bash $GATE_SCRIPT_DIR/devstack-vm-gate.sh && \
|
|
bash -xe $BASE/new/pbr/tools/integration.sh $PROJECTS
|
|
}}
|
|
export -f gate_hook
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
- link-logs
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
- job:
|
|
name: propose-requirements-updates
|
|
node: proposal
|
|
concurrent: false
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: /usr/local/jenkins/slave_scripts/propose_requirements_update.sh
|
|
- link-logs
|
|
|
|
publishers:
|
|
- console-log
|