mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-16 23:13:05 +00:00
[1] http://lists.openstack.org/pipermail/openstack-discuss/2020-October/018445.html Conflicts: .zuul.yaml lower-constraints.txt Changes: bindep.txt NOTE(stephenfin): Conflicts are due to the changed job template (ussuri vs victoria) and slightly different lower constraints between branches. We also need to remove 'libffi6' from 'bindep.txt' since Focal doesn't have this. This was done in the Victoria cycle as part of change Iab3634039845adb649c7fd69d1812b405a61433c but we must squash it in here. Change-Id: I45e9a81d451c64cdd51f9b606d94161742bacdb7 (cherry picked from commitc677192d51) (cherry picked from commitcde8db3d61) (cherry picked from commit40f56c653c) (cherry picked from commit84af7608ef)
252 lines
8.3 KiB
YAML
252 lines
8.3 KiB
YAML
---
|
|
- job:
|
|
name: osc-tox-unit-tips
|
|
parent: openstack-tox
|
|
description: |
|
|
Run unit tests for OpenStackClient with master branch of important libs.
|
|
|
|
Takes advantage of the base tox job's install-siblings feature.
|
|
required-projects:
|
|
- openstack/cliff
|
|
- openstack/keystoneauth
|
|
- openstack/openstacksdk
|
|
- openstack/os-client-config
|
|
- openstack/osc-lib
|
|
- openstack/python-openstackclient
|
|
vars:
|
|
# Set work dir to openstackclient so that if it's triggered by one of the
|
|
# other repos the tests will run in the same place
|
|
zuul_work_dir: src/opendev.org/openstack/python-openstackclient
|
|
|
|
- job:
|
|
name: osc-tox-py36-tips
|
|
parent: openstack-tox-py36
|
|
description: |
|
|
Run unit tests for OpenStackClient with master branch of important libs.
|
|
|
|
Takes advantage of the base tox job's install-siblings feature.
|
|
# The job only tests the latest and shouldn't be run on the stable branches
|
|
branches: ^(?!stable)
|
|
required-projects:
|
|
- openstack/cliff
|
|
- openstack/keystoneauth
|
|
- openstack/openstacksdk
|
|
- openstack/os-client-config
|
|
- openstack/osc-lib
|
|
- openstack/python-openstackclient
|
|
vars:
|
|
# Set work dir to openstackclient so that if it's triggered by one of the
|
|
# other repos the tests will run in the same place
|
|
zuul_work_dir: src/opendev.org/openstack/python-openstackclient
|
|
|
|
- job:
|
|
name: osc-functional-devstack-base
|
|
parent: devstack-tox-functional
|
|
description: |
|
|
Base job for devstack-based functional tests
|
|
timeout: 9000
|
|
irrelevant-files:
|
|
- ^.*\.rst$
|
|
- ^doc/.*$
|
|
- ^releasenotes/.*$
|
|
required-projects:
|
|
- openstack/python-openstackclient
|
|
vars:
|
|
devstack_localrc:
|
|
LIBS_FROM_GIT: python-openstackclient
|
|
# NOTE(dtroyer): OSC needs to support Image v1 for a while yet so re-enable
|
|
GLANCE_V1_ENABLED: true
|
|
# NOTE(dtroyer): Functional tests need a bit more volume headroom
|
|
VOLUME_BACKING_FILE_SIZE: 20G
|
|
devstack_local_conf:
|
|
post-config:
|
|
$CINDER_CONF:
|
|
DEFAULT:
|
|
# NOTE(dtroyer): OSC needs to support Volume v1 for a while yet so re-enable
|
|
enable_v1_api: true
|
|
devstack_services:
|
|
ceilometer-acentral: false
|
|
ceilometer-acompute: false
|
|
ceilometer-alarm-evaluator: false
|
|
ceilometer-alarm-notifier: false
|
|
ceilometer-anotification: false
|
|
ceilometer-api: false
|
|
ceilometer-collector: false
|
|
s-account: true
|
|
s-container: true
|
|
s-object: true
|
|
s-proxy: true
|
|
osc_environment:
|
|
PYTHONUNBUFFERED: 'true'
|
|
OS_CLOUD: devstack-admin
|
|
zuul_work_dir: src/opendev.org/openstack/python-openstackclient
|
|
|
|
# The Neutron bits are here rather than in osc-functional-devstack-base to
|
|
# simplify removing Neutron in the osc-functional-devstack-n-net job.
|
|
- job:
|
|
name: osc-functional-devstack
|
|
parent: osc-functional-devstack-base
|
|
timeout: 7800
|
|
vars:
|
|
devstack_plugins:
|
|
# NOTE(amotoki): Some neutron features are enabled by devstack plugin
|
|
neutron: https://opendev.org/openstack/neutron
|
|
devstack_services:
|
|
neutron-network-segment-range: true
|
|
neutron-segments: true
|
|
q-metering: true
|
|
q-qos: true
|
|
tox_envlist: functional
|
|
|
|
- job:
|
|
name: osc-functional-devstack-n-net
|
|
parent: osc-functional-devstack-base
|
|
timeout: 7800
|
|
vars:
|
|
devstack_localrc:
|
|
FLAT_INTERFACE: br_flat
|
|
PUBLIC_INTERFACE: br_pub
|
|
devstack_services:
|
|
n-cell: true
|
|
n-net: true
|
|
neutron: false
|
|
neutron-segments: false
|
|
q-agt: false
|
|
q-dhcp: false
|
|
q-l3: false
|
|
q-meta: false
|
|
q-metering: false
|
|
q-qos: false
|
|
q-svc: false
|
|
tox_envlist: functional
|
|
|
|
- job:
|
|
name: osc-functional-devstack-tips
|
|
parent: osc-functional-devstack
|
|
timeout: 7800
|
|
required-projects:
|
|
- openstack/cliff
|
|
- openstack/keystoneauth
|
|
- openstack/openstacksdk
|
|
- openstack/os-client-config
|
|
- openstack/osc-lib
|
|
- openstack/python-openstackclient
|
|
vars:
|
|
devstack_localrc:
|
|
LIBS_FROM_GIT: python-openstackclient,openstacksdk,osc-lib,os-client-config
|
|
# This is insufficient, but leaving it here as a reminder of what may
|
|
# someday be all we need to make this work
|
|
# disable_python3_package swift
|
|
DISABLED_PYTHON3_PACKAGES: swift
|
|
devstack_services:
|
|
# Swift is not ready for python3 yet: At a minimum keystonemiddleware needs
|
|
# to be installed in the py2 env, there are probably other things too...
|
|
s-account: false
|
|
s-container: false
|
|
s-object: false
|
|
s-proxy: false
|
|
# As swift is not available for this job, c-bak service won't be functional.
|
|
# The backup related tests can be handled by other jobs having swift enabled.
|
|
# The backup service along with swift services can be enabled once swift is
|
|
# compatible with py3
|
|
c-bak: false
|
|
tox_envlist: functional
|
|
tox_install_siblings: true
|
|
|
|
- secret:
|
|
name: osc-dockerhub
|
|
data:
|
|
username: osclientzuul
|
|
password: !encrypted/pkcs1-oaep
|
|
- LbIZjJiVstRVXMpoLQ3+/JcNB6lKVUWJXXo5+Outf+PKAaO7mNnv8XLiFMKnJ6ftopLyu
|
|
hWbX9rA+NddvplLQkf1xxkh7QBBU8PToLr58quI2SENUclt4tpjxbZfZu451kFSNJvNvR
|
|
E58cHHpfJZpyRnS2htXmN/Qy24gbV2w7CQxSZD2YhlcrerD8uQ8rWEnlY1wcJEaEGomtS
|
|
ZTGxsdK2TsZC2cd4b7TG7+xbl2i+hjADzwSQAgUzlLlwuG71667+IWk4SOZ7OycJTv9NN
|
|
ZTak8+CGfiMKdmsxZ1Z8uD7DC+RIklDjMWyly6zuhWzfhOmsmU0CesR50moodRUvbK79p
|
|
NZM8u0hBex5cl2EpUEwJL/FSPJXUhDMPoMoTZT/SAuXf25R9eZ9JGrKsIAlmVhpl8ifoE
|
|
8TpPyvIHGS3YelTQjhqOX0wGb9T4ZauQCcI5Ajzy9NuCTyD9xxme9OX1zz7gMACRnVHvz
|
|
q7U7Ue90MnmGH6E2SgKjIZhyzy9Efwb7JUvH1Zb3hlrjCjEhwi9MV5FnABTEeXyYwE10s
|
|
3o/KZg2zvdWkVG6x0dEkjpoQaNuaB7T2Na7Sm421n/z3LCzhiQGuTUjENnL6cMEtuA6Pp
|
|
BfI5+Qlg7HMwkBXNB73EPfWHzbCR3VNrzGYTy9FvhGud0/cXsuBXgps4WH63ic=
|
|
|
|
- job:
|
|
name: osc-build-image
|
|
parent: opendev-build-docker-image
|
|
description: Build Docker images.
|
|
allowed-projects: openstack/python-openstackclient
|
|
requires:
|
|
- python-builder-container-image
|
|
- python-base-container-image
|
|
provides: osc-container-image
|
|
vars: &osc_image_vars
|
|
docker_images:
|
|
- context: .
|
|
repository: osclient/python-openstackclient
|
|
|
|
- job:
|
|
name: osc-upload-image
|
|
parent: opendev-upload-docker-image
|
|
description: Build Docker images and upload to Docker Hub.
|
|
allowed-projects: openstack/python-openstackclient
|
|
requires:
|
|
- python-builder-container-image
|
|
- python-base-container-image
|
|
provides: osc-container-image
|
|
secrets:
|
|
- name: docker_credentials
|
|
secret: osc-dockerhub
|
|
pass-to-parent: true
|
|
vars: *osc_image_vars
|
|
|
|
- job:
|
|
name: osc-promote-image
|
|
parent: opendev-promote-docker-image
|
|
allowed-projects: openstack/python-openstackclient
|
|
description: Promote previously uploaded Docker images.
|
|
secrets:
|
|
- name: docker_credentials
|
|
secret: osc-dockerhub
|
|
pass-to-parent: true
|
|
nodeset:
|
|
nodes: []
|
|
vars: *osc_image_vars
|
|
|
|
- project-template:
|
|
name: osc-tox-unit-tips
|
|
check:
|
|
jobs:
|
|
- osc-tox-py36-tips
|
|
gate:
|
|
jobs:
|
|
- osc-tox-py36-tips
|
|
|
|
- project:
|
|
templates:
|
|
- openstackclient-plugin-jobs
|
|
- osc-tox-unit-tips
|
|
- openstack-cover-jobs
|
|
- openstack-python3-ussuri-jobs
|
|
- publish-openstack-docs-pti
|
|
- check-requirements
|
|
- release-notes-jobs-python3
|
|
check:
|
|
jobs:
|
|
- osc-build-image
|
|
- osc-functional-devstack
|
|
# - osc-functional-devstack-n-net:
|
|
# voting: false
|
|
# # The job testing nova-network no longer works before Pike, and
|
|
# # should be disabled until the New Way of testing against old clouds
|
|
# # is ready and backported
|
|
# branches: ^(?!stable/(newton|ocata)).*$
|
|
- osc-functional-devstack-tips:
|
|
# The functional-tips job only tests the latest and shouldn't be run
|
|
# on the stable branches
|
|
branches: ^(?!stable)
|
|
gate:
|
|
jobs:
|
|
- osc-upload-image
|
|
- osc-functional-devstack
|
|
promote:
|
|
jobs:
|
|
- osc-promote-image
|