1d21cd635f
This repo was created from filter branching the openstack-infra/ config repo. This process brought a lot of cruft with it in the form of directories that we no longer need. This patch removes that cruft so we begin with a tidier repo. Change-Id: Ibffad1b11c0c5f84eedfb0365369f60c4961a0f3
76 lines
1.8 KiB
YAML
76 lines
1.8 KiB
YAML
- job:
|
|
name: 'check-tempest-dsvm-docker'
|
|
node: 'devstack-precise || devstack-trusty'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 65
|
|
- 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
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
|
export PROJECTS="stackforge/nova-docker $PROJECTS"
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
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-tempest-dsvm-f20-docker'
|
|
node: 'devstack-f20'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 65
|
|
- 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
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
|
export PROJECTS="stackforge/nova-docker $PROJECTS"
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: 'logs/**'
|
|
keep-hierarchy: false
|
|
copy-after-failure: true
|
|
- console-log
|