
Approve when the tripleo-ci cloud is back on line and verified responsive again. This reverts commit e74d5cd9be78c7f3e276a267a20d8397c378f4d9 and updates the configuration to match the new deployment. Change-Id: I2feabef819aa6698a5d623e4e65bf7673f913c51
78 lines
2.2 KiB
YAML
78 lines
2.2 KiB
YAML
- job:
|
|
name: 'check-tripleo-seed-precise'
|
|
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=192.168.1.48
|
|
export DIB_COMMON_ELEMENTS="stackuser pypi-openstack"
|
|
export TRIPLEO_TEST=seed
|
|
function gate_hook {
|
|
bash -xe /opt/stack/new/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: 'logs/**'
|
|
keep-hierarchy: false
|
|
copy-after-failure: true
|
|
- console-log
|
|
|
|
- job:
|
|
name: 'check-tripleo-undercloud-precise'
|
|
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=192.168.1.48
|
|
export DIB_COMMON_ELEMENTS="stackuser pypi-openstack"
|
|
export TRIPLEO_TEST=undercloud
|
|
function gate_hook {
|
|
bash -xe /opt/stack/new/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: 'logs/**'
|
|
keep-hierarchy: false
|
|
copy-after-failure: true
|
|
- console-log
|