Add in_use_load_balancer to lb quota #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: functional-basic | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
- '**.gitignore' | |
- '**LICENSE' | |
jobs: | |
functional-basic: | |
strategy: | |
fail-fast: false | |
matrix: | |
name: ["master"] | |
openstack_version: ["master"] | |
ubuntu_version: ["20.04"] | |
include: | |
- name: "zed" | |
openstack_version: "stable/zed" | |
ubuntu_version: "20.04" | |
- name: "yoga" | |
openstack_version: "stable/yoga" | |
ubuntu_version: "20.04" | |
- name: "xena" | |
openstack_version: "stable/xena" | |
ubuntu_version: "20.04" | |
- name: "wallaby" | |
openstack_version: "stable/wallaby" | |
ubuntu_version: "20.04" | |
- name: "victoria" | |
openstack_version: "stable/victoria" | |
ubuntu_version: "20.04" | |
runs-on: ubuntu-${{ matrix.ubuntu_version }} | |
name: Deploy OpenStack ${{ matrix.name }} with defaults and run basic acceptance tests | |
steps: | |
- name: Checkout Gophercloud | |
uses: actions/checkout@v3 | |
- name: Deploy devstack | |
uses: EmilienM/devstack-action@v0.11 | |
with: | |
branch: ${{ matrix.openstack_version }} | |
enabled_services: 's-account,s-container,s-object,s-proxy' | |
- name: Checkout go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.15' | |
- name: Run Gophercloud acceptance tests | |
run: ./script/acceptancetest | |
env: | |
DEVSTACK_PATH: ${{ github.workspace }}/devstack | |
ACCEPTANCE_TESTS_FILTER: '^acceptance/openstack$' | |
OS_BRANCH: ${{ matrix.openstack_version }} | |
- name: Generate logs on failure | |
run: ./script/collectlogs | |
if: failure() | |
- name: Upload logs artifacts on failure | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: functional-basic-${{ matrix.name }} | |
path: /tmp/devstack-logs/* |