95c2b51463
OpenStack is dropping the py2.7 support in ussuri cycle. Aodh is ready with python 3 and ok to drop the python 2.7 support. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal - https://review.opendev.org/#/c/691178/ Change-Id: I12158c5f382f832da50d5be90906ca4a7dd8ccdc
65 lines
2.1 KiB
YAML
65 lines
2.1 KiB
YAML
- project:
|
|
templates:
|
|
- openstack-python3-ussuri-jobs
|
|
- publish-openstack-docs-pti
|
|
- release-notes-jobs-python3
|
|
check:
|
|
jobs:
|
|
- aodh-tempest-plugin-mysql
|
|
- aodh-tempest-plugin-postgresql
|
|
- telemetry-dsvm-integration
|
|
- telemetry-dsvm-integration-ipv6-only
|
|
gate:
|
|
jobs:
|
|
- aodh-tempest-plugin-mysql
|
|
- aodh-tempest-plugin-postgresql
|
|
- telemetry-dsvm-integration
|
|
- telemetry-dsvm-integration-ipv6-only
|
|
experimental:
|
|
jobs:
|
|
# TripleO jobs that deploy Telemetry.
|
|
# Note we don't use a project-template here, so it's easier
|
|
# to disable voting on one specific job if things go wrong.
|
|
# tripleo-ci-centos-7-scenario00(1|2)-multinode-oooq will only
|
|
# run on stable/pike while the -container will run in Queens
|
|
# and beyond.
|
|
# If you need any support to debug these jobs in case of
|
|
# failures, please reach us on #tripleo IRC channel.
|
|
# NOTE(sileht): These job takes 3 hours and fail most of the times.
|
|
# While other jobs take 20-30 minutes
|
|
# We can reenable it when they take less times.
|
|
- tripleo-ci-centos-7-scenario001-multinode-oooq
|
|
- tripleo-ci-centos-7-scenario001-standalone
|
|
- tripleo-ci-centos-7-scenario002-multinode-oooq
|
|
- tripleo-ci-centos-7-scenario002-standalone
|
|
|
|
- job:
|
|
name: aodh-tempest-plugin-postgresql
|
|
parent: telemetry-tempest-base
|
|
irrelevant-files: &aodh-irrelevant-files
|
|
- ^(test-|)requirements.txt$
|
|
- ^setup.cfg$
|
|
- ^doc/.*$
|
|
- ^.*\.rst$
|
|
- ^releasenotes/.*$
|
|
- ^aodh/tests/.*$
|
|
vars:
|
|
devstack_services:
|
|
postgresql: true
|
|
mysql: false
|
|
devstack_localrc:
|
|
DATABASE_TYPE: "postgresql"
|
|
AODH_BACKEND: "postgresql"
|
|
USE_PYTHON3: True
|
|
tempest_test_regex: telemetry_tempest_plugin.aodh
|
|
|
|
- job:
|
|
name: aodh-tempest-plugin-mysql
|
|
parent: telemetry-tempest-base
|
|
irrelevant-files: *aodh-irrelevant-files
|
|
vars:
|
|
devstack_localrc:
|
|
AODH_BACKEND: "mysql"
|
|
USE_PYTHON3: True
|
|
tempest_test_regex: telemetry_tempest_plugin.aodh
|