Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Run functional tests if workflow changes #3377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-baremetal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**baremetal**'
- '.github/workflows/functional-baremetal.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -31,7 +32,7 @@ jobs:
- name: Work around broken dnsmasq
run: sudo apt-get purge -y dnsmasq-base
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
2 changes: 1 addition & 1 deletion 2 .github/workflows/functional-basic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
enabled_services: 's-account,s-container,s-object,s-proxy,${{ matrix.additional_services }}'
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-blockstorage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**blockstorage**'
- '.github/workflows/functional-blockstorage.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-compute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**compute**'
- '.github/workflows/functional-compute.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-containerinfra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**containerinfra**'
- '.github/workflows/functional-containerinfra.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -44,7 +45,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
6 changes: 3 additions & 3 deletions 6 .github/workflows/functional-dns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: functional-dns
on:
pull_request:
paths:
- '**openstack/dns**'
- '**functional-dns.yaml'
- '**dns**'
- '.github/workflows/functional-dns.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
19 changes: 18 additions & 1 deletion 19 .github/workflows/functional-fwaas_v2.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# TODO(stephenfin): neutron-fwaas may support OVN now. If so, we can combine
# this job with the functional-networking job. See [1]
#
# [1] https://bugs.launchpad.net/neutron/+bug/1971958
name: functional-fwaas_v2
on:
pull_request:
paths:
- '**networking/v2/extensions/fwaas_v2**'
- '.github/workflows/functional-fwaas_v2.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -28,8 +33,16 @@ jobs:
steps:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Create additional neutron policies
run: |
mkdir /tmp/neutron-policies
cat << EOF >> /tmp/neutron-policies/port_binding.yaml
---
"create_port:binding:profile": "rule:admin_only or rule:service_api"
"update_port:binding:profile": "rule:admin_only or rule:service_api"
EOF
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand All @@ -39,6 +52,10 @@ jobs:
Q_ML2_PLUGIN_TYPE_DRIVERS=flat,gre,vlan,vxlan
Q_ML2_TENANT_NETWORK_TYPE=vxlan
Q_TUNNEL_TYPES=vxlan,gre

[[post-config|\$NEUTRON_CONF]]
[oslo_policy]
policy_dirs = /tmp/neutron-policies
enabled_services: 'q-svc,q-agt,q-dhcp,q-l3,q-meta,q-fwaas-v2,-cinder,-horizon,-tempest,-swift,-c-sch,-c-api,-c-vol,-c-bak,-ovn,-ovn-controller,-ovn-northd,-q-ovn-metadata-agent,${{ matrix.additional_services }}'
- name: Checkout go
uses: actions/setup-go@v5
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-identity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**identity**'
- '.github/workflows/functional-identity.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
enabled_services: "${{ matrix.additional_services }}"
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**image**'
- '.github/workflows/functional-image.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
enabled_services: "${{ matrix.additional_services }}"
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-keymanager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**keymanager**'
- '.github/workflows/functional-keymanager.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-loadbalancer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**loadbalancer**'
- '.github/workflows/functional-loadbalancer.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-messaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**messaging**'
- '.github/workflows/functional-messaging.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-networking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**networking**'
- '.github/workflows/functional-networking.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -37,7 +38,7 @@ jobs:
"update_port:binding:profile": "rule:admin_only or rule:service_api"
EOF
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-objectstorage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**objectstorage**'
- '.github/workflows/functional-objectstorage.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-orchestration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**orchestration**'
- '.github/workflows/functional-orchestration.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-placement.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**placement**'
- '.github/workflows/functional-placement.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand All @@ -29,7 +30,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
enabled_services: "${{ matrix.additional_services }}"
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-sharedfilesystems.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**sharedfilesystems**'
- '.github/workflows/functional-sharedfilesystems.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
3 changes: 2 additions & 1 deletion 3 .github/workflows/functional-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- '**workflow**'
- '.github/workflows/functional-workflow.yaml'
schedule:
- cron: '0 0 */3 * *'
jobs:
Expand Down Expand Up @@ -32,7 +33,7 @@ jobs:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Deploy devstack
uses: gophercloud@devstack-action@v0.17
uses: gophercloud/devstack-action@v0.17
with:
branch: ${{ matrix.openstack_version }}
conf_overrides: |
Expand Down
Loading
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.