forked from gophercloud/gophercloud
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (61 loc) · 1.99 KB
/
functional-basic.yaml
File metadata and controls
61 lines (61 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: functional-basic
on:
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
- '**.gitignore'
- '**LICENSE'
schedule:
- cron: '0 0 */3 * *'
jobs:
functional-basic:
strategy:
fail-fast: false
matrix:
include:
- name: "master"
openstack_version: "master"
ubuntu_version: "22.04"
additional_services: "openstack-cli-server"
- name: "caracal"
openstack_version: "stable/2024.1"
ubuntu_version: "22.04"
additional_services: ""
- name: "bobcat"
openstack_version: "stable/2023.2"
ubuntu_version: "22.04"
additional_services: ""
- name: "antelope"
openstack_version: "stable/2023.1"
ubuntu_version: "22.04"
additional_services: ""
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@v4
- name: Deploy devstack
uses: EmilienM/devstack-action@e82a9cbead099cba72f99537e82a360c3e319c69
with:
branch: ${{ matrix.openstack_version }}
enabled_services: 's-account,s-container,s-object,s-proxy,${{ matrix.additional_services }}'
- name: Checkout go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
- name: Run Gophercloud acceptance tests
run: ./script/acceptancetest
env:
DEVSTACK_PATH: ${{ github.workspace }}/devstack
PACKAGE: './internal/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@v4
with:
name: functional-basic-${{ matrix.name }}
path: /tmp/devstack-logs/*