-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (61 loc) · 1.93 KB
/
functional-basic.yaml
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'
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/*