
The test environments and the tripleo-gate slaves need a geard for the test environment broker. We haven't set one up yet, but I wanted to show where in the system it gets configured. Change-Id: I963177378048daddf3fb556072b5e831d3fc0f70
37 lines
1000 B
YAML
37 lines
1000 B
YAML
- job:
|
|
name: 'gate-tripleo-deploy'
|
|
node: 'tripleo-precise'
|
|
|
|
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 GEARDSERVER=138.35.77.19
|
|
function gate_hook {
|
|
bash -xe /home/jenkins/tripleo/tripleo-ci/toci_gate_test.sh
|
|
}
|
|
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:
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: '**/pip.log'
|
|
keep-hierarchy: false
|
|
copy-after-failure: true
|
|
- console-log
|