Joe Gordon 7b0280fd27 run link-logs builder first
The builders are run sequentially and short circuited. So if a job fails
we used to loose the link to the logs, but a failed job is the main
reason why someone would try to access the jenkins console log directly.

Confirmed this patch hits all cases of link-logs using 'git grep -B1 link-logs'

Change-Id: I74bc87b706c13624a1b34d0a0335c3a167ff8e34
2014-03-14 15:06:44 +00:00

38 lines
1.1 KiB
YAML

- job:
name: gate-climate-devstack-dsvm
node: devstack-precise
wrappers:
- timeout:
timeout: 65
fail: true
- timestamps
builders:
- link-logs
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TIMEOUT=60
export ENABLED_SERVICES=climate,climate-a,climate-m
export PROJECTS="stackforge/climate $PROJECTS"
export PROJECTS="stackforge/climate-nova $PROJECTS"
export PROJECTS="stackforge/python-climateclient $PROJECTS"
function pre_test_hook {
# Install climate devstack integration
CLIMATE_BASE=/opt/stack/new/climate/contrib/devstack
DEVSTACK_BASE=/opt/stack/new/devstack
cp $CLIMATE_BASE/lib/* $DEVSTACK_BASE/lib
cp $CLIMATE_BASE/extras.d/* $DEVSTACK_BASE/extras.d
}
export -f pre_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