9db0d54ce3
A previous patch for Horizon infra scipts missed passing {testtype} into post_test_hook, which is required to properly copy various testing artifacts into the right directory (which now depends on {testtype}). Change-Id: I20232ef16ae60a7151e267b506af471ebfed2f7f Partially-Implements: blueprint test-deprecated-features
112 lines
3.0 KiB
YAML
112 lines
3.0 KiB
YAML
- job-template:
|
|
name: 'gate-horizon-dsvm-integration-{testtype}'
|
|
node: ubuntu-trusty
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 150
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- firefox-install
|
|
- xvfb-install
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
export DEVSTACK_GATE_EXERCISES=0
|
|
export DEVSTACK_GATE_INSTALL_TESTONLY=1
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export DEVSTACK_GATE_SETTINGS=/opt/stack/new/horizon/tools/gate/integration/devstack_gate_rc
|
|
|
|
function pre_test_hook {{
|
|
cd /opt/stack/new/horizon/tools/gate/integration
|
|
./pre_test_hook.sh '{testtype}'
|
|
}}
|
|
export -f pre_test_hook
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/horizon/tools/gate/integration
|
|
./post_test_hook.sh '{testtype}'
|
|
}}
|
|
export -f post_test_hook
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- test-results
|
|
- devstack-logs
|
|
- publish-test-reports
|
|
- console-log
|
|
|
|
- publisher:
|
|
name: publish-test-reports
|
|
publishers:
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: 'test_reports/**'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
|
|
- job-group:
|
|
name: 'horizon-dsvm-integration-jobs'
|
|
jobs:
|
|
- 'gate-horizon-dsvm-integration-{testtype}':
|
|
testtype: 'current'
|
|
- 'gate-horizon-dsvm-integration-{testtype}':
|
|
testtype: 'deprecated'
|
|
|
|
- job:
|
|
name: gate-horizon-selenium-headless
|
|
node: ubuntu-trusty
|
|
|
|
builders:
|
|
- zuul-git-prep-upper-constraints
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
NOSE_WITH_XUNIT=1 tox -evenv -- /bin/bash run_tests.sh -N --only-selenium --selenium-headless
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job:
|
|
name: gate-horizon-dsvm-tempest-plugin
|
|
node: ubuntu-trusty
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 100
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX=horizon
|
|
export DEVSTACK_LOCAL_CONFIG="export TEMPEST_PLUGINS='/opt/stack/new/tempest-horizon'"
|
|
export PROJECTS="openstack/tempest-horizon $PROJECTS"
|
|
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
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
|