43c71fa427
Change Id2caf9561b361c1d4950856423282535d067e015 for devstack adds all repositories in DEVSTACK_PROJECT_FROM_GIT to PROJECTS, so no need to add repos in jobs to PROJECTS if there are in DEVSTACK_PROJECT_FROM_GIT. This change went through all of jenkins/jobs and removed PROJECTS where there is direct 1:1 correspondence. For a few files, especially ironic and freezer, this was not doable. Change-Id: I4b51e33b9bc0f1cb7948b69abf104e0b57b9ff52
114 lines
4.1 KiB
YAML
114 lines
4.1 KiB
YAML
- job-template:
|
|
name: '{pipeline}-congress-dsvm-api-{backend}-{node}{suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 80
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- local_conf:
|
|
conf: |
|
|
[[local|localrc]]
|
|
enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer
|
|
enable_plugin heat git://git.openstack.org/openstack/heat
|
|
enable_plugin congress git://git.openstack.org/openstack/congress
|
|
enable_plugin murano git://git.openstack.org/openstack/murano
|
|
enable_plugin aodh git://git.openstack.org/openstack/aodh
|
|
# To deploy congress as multi-process (api, pe, datasources)
|
|
CONGRESS_MULTIPROCESS_DEPLOYMENT=True
|
|
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
ENABLED_SERVICES=s-proxy,s-object,s-container,s-account,
|
|
ENABLED_SERVICES+=h-eng,h-api,h-api-cfn,h-api-cw
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="congress_tempest_tests"
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export PROJECTS="openstack/congress $PROJECTS"
|
|
export PROJECTS="openstack/congress-dashboard $PROJECTS"
|
|
export DEVSTACK_PROJECT_FROM_GIT=python-congressclient
|
|
export PROJECTS="openstack/murano $PROJECTS"
|
|
export PROJECTS="openstack/aodh $PROJECTS"
|
|
export PROJECTS="openstack/murano-dashboard $PROJECTS"
|
|
export PROJECTS="openstack/python-muranoclient $PROJECTS"
|
|
export PROJECTS="openstack/python-aodhclient $PROJECTS"
|
|
|
|
export ENABLED_SERVICES
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
if [ "{backend}" = "postgresql" ] ; then
|
|
export DEVSTACK_GATE_POSTGRES=1
|
|
fi
|
|
|
|
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
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: '{pipeline}-congress-pe-replicated-{backend}{suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 80
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- local_conf:
|
|
conf: |
|
|
[[local|localrc]]
|
|
enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer
|
|
enable_plugin heat git://git.openstack.org/openstack/heat
|
|
enable_plugin congress git://git.openstack.org/openstack/congress
|
|
enable_plugin aodh git://git.openstack.org/openstack/aodh
|
|
CONGRESS_REPLICATED=True
|
|
CONGRESS_MULTIPROCESS_DEPLOYMENT=True
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
ENABLED_SERVICES=s-proxy,s-object,s-container,s-account,
|
|
ENABLED_SERVICES+=h-eng,h-api,h-api-cfn,h-api-cw
|
|
|
|
export ENABLED_SERVICES
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="congress_tempest_tests"
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export PROJECTS="openstack/congress $PROJECTS"
|
|
export PROJECTS="openstack/congress-dashboard $PROJECTS"
|
|
export PROJECTS="openstack/python-aodhclient $PROJECTS"
|
|
export PROJECTS="openstack/aodh $PROJECTS"
|
|
export DEVSTACK_PROJECT_FROM_GIT=python-congressclient
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
if [ "{backend}" = "postgresql" ] ; then
|
|
export DEVSTACK_GATE_POSTGRES=1
|
|
fi
|
|
|
|
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
|
|
- console-log
|