Merge "Migrating solum gate to F20"
This commit is contained in:
commit
2e06eac9a6
@ -1,5 +1,5 @@
|
|||||||
- job:
|
- job:
|
||||||
name: gate-solum-devstack-dsvm
|
name: 'gate-solum-devstack-dsvm'
|
||||||
node: 'devstack-precise || devstack-trusty'
|
node: 'devstack-precise || devstack-trusty'
|
||||||
|
|
||||||
wrappers:
|
wrappers:
|
||||||
@ -39,3 +39,45 @@
|
|||||||
publishers:
|
publishers:
|
||||||
- devstack-logs
|
- devstack-logs
|
||||||
- console-log
|
- console-log
|
||||||
|
|
||||||
|
- job:
|
||||||
|
name: 'gate-solum-devstack-dsvm-f20'
|
||||||
|
node: 'devstack-f20'
|
||||||
|
|
||||||
|
wrappers:
|
||||||
|
- timeout:
|
||||||
|
timeout: 65
|
||||||
|
fail: true
|
||||||
|
- timestamps
|
||||||
|
|
||||||
|
builders:
|
||||||
|
- link-logs
|
||||||
|
- net-info
|
||||||
|
- devstack-checkout
|
||||||
|
- shell: |
|
||||||
|
#!/bin/bash -xe
|
||||||
|
export PYTHONUNBUFFERED=true
|
||||||
|
export DEVSTACK_GATE_TIMEOUT=60
|
||||||
|
export DEVSTACK_GATE_NEUTRON=1
|
||||||
|
export KEEP_LOCALRC=1
|
||||||
|
export ENABLED_SERVICES=solum,solum-api,solum-build-api,solum-conductor,solum-deployer,solum-worker,tempest
|
||||||
|
export PROJECTS="stackforge/solum $PROJECTS"
|
||||||
|
|
||||||
|
function pre_test_hook {
|
||||||
|
cd /opt/stack/new/solum/functionaltests
|
||||||
|
./pre_test_hook.sh
|
||||||
|
}
|
||||||
|
export -f pre_test_hook
|
||||||
|
|
||||||
|
function post_test_hook {
|
||||||
|
cd /opt/stack/new/solum/functionaltests
|
||||||
|
./post_test_hook.sh
|
||||||
|
}
|
||||||
|
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:
|
||||||
|
- devstack-logs
|
||||||
|
- console-log
|
||||||
|
@ -591,6 +591,8 @@ jobs:
|
|||||||
voting: false
|
voting: false
|
||||||
- name: gate-solum-python33
|
- name: gate-solum-python33
|
||||||
voting: false
|
voting: false
|
||||||
|
- name: gate-solum-devstack-dsvm
|
||||||
|
voting: false
|
||||||
- name: gate-reviewstats-python33
|
- name: gate-reviewstats-python33
|
||||||
voting: false
|
voting: false
|
||||||
- name: gate-refstack-python33
|
- name: gate-refstack-python33
|
||||||
@ -4489,9 +4491,10 @@ projects:
|
|||||||
- gate-solum-python33
|
- gate-solum-python33
|
||||||
- gate-solum-pypy
|
- gate-solum-pypy
|
||||||
- gate-solum-devstack-dsvm
|
- gate-solum-devstack-dsvm
|
||||||
|
- gate-solum-devstack-dsvm-f20
|
||||||
gate:
|
gate:
|
||||||
- gate-solum-pypy
|
- gate-solum-pypy
|
||||||
- gate-solum-devstack-dsvm
|
- gate-solum-devstack-dsvm-f20
|
||||||
pre-release:
|
pre-release:
|
||||||
- solum-tarball
|
- solum-tarball
|
||||||
release:
|
release:
|
||||||
|
@ -88,6 +88,7 @@ def set_node_options(item, job, params, default):
|
|||||||
mirror_re = r'^(periodic|post)-mirror-python(26|27|33)$'
|
mirror_re = r'^(periodic|post)-mirror-python(26|27|33)$'
|
||||||
python26_re = r'^.*-py(thon)?26.*$'
|
python26_re = r'^.*-py(thon)?26.*$'
|
||||||
centos6_re = r'^.*-centos6.*$'
|
centos6_re = r'^.*-centos6.*$'
|
||||||
|
f20_re = r'^.*-f20.*$'
|
||||||
python33_re = r'^.*-py(py|(thon)?33).*$'
|
python33_re = r'^.*-py(py|(thon)?33).*$'
|
||||||
tripleo_re = r'^.*-tripleo.*$'
|
tripleo_re = r'^.*-tripleo.*$'
|
||||||
devstack_re = r'^.*-dsvm.*$'
|
devstack_re = r'^.*-dsvm.*$'
|
||||||
@ -105,6 +106,10 @@ def set_node_options(item, job, params, default):
|
|||||||
elif re.match(centos6_re, job.name):
|
elif re.match(centos6_re, job.name):
|
||||||
# Pass because job specified label is always correct.
|
# Pass because job specified label is always correct.
|
||||||
pass
|
pass
|
||||||
|
# Jobs needing fedora 20
|
||||||
|
elif re.match(f20_re, job.name):
|
||||||
|
# Pass because job specified label is always correct.
|
||||||
|
pass
|
||||||
# Jobs needing py33/pypy slaves
|
# Jobs needing py33/pypy slaves
|
||||||
elif re.match(python33_re, job.name):
|
elif re.match(python33_re, job.name):
|
||||||
# Pass because job specified label is always correct.
|
# Pass because job specified label is always correct.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user