Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d89a431

Browse files
committed
CI: new versions of OpenStack & periodic jobs
1 parent e82a9cb commit d89a431

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

.github/workflows/with-defaults.yml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
name: with-defaults
12
on:
2-
- pull_request
3-
- push
3+
pull_request:
4+
push:
5+
schedule:
6+
- cron: '0 8 * * 0'
47

58
jobs:
69
with_defaults:
@@ -11,15 +14,22 @@ jobs:
1114
openstack_version: ["master"]
1215
ubuntu_version: ["22.04"]
1316
include:
17+
- name: "master"
18+
openstack_version: "master"
19+
ubuntu_version: "22.04"
20+
additional_services: "openstack-cli-server"
21+
- name: "dalmatian"
22+
openstack_version: "stable/2024.2"
23+
ubuntu_version: "22.04"
24+
additional_services: "openstack-cli-server"
25+
- name: "caracal"
26+
openstack_version: "stable/2024.1"
27+
ubuntu_version: "22.04"
28+
additional_services: ""
1429
- name: "bobcat"
1530
openstack_version: "stable/2023.2"
1631
ubuntu_version: "22.04"
17-
- name: "antelope"
18-
openstack_version: "stable/2023.1"
19-
ubuntu_version: "22.04"
20-
- name: "zed"
21-
openstack_version: "stable/zed"
22-
ubuntu_version: "20.04"
32+
additional_services: ""
2333
runs-on: ubuntu-${{ matrix.ubuntu_version }}
2434
name: A job to deploy devstack with defaults
2535
steps:
@@ -29,6 +39,7 @@ jobs:
2939
uses: ./
3040
with:
3141
branch: ${{ matrix.openstack_version }}
42+
enabled_services: '${{ matrix.additional_services }}'
3243
- name: Upload logs artifacts on failure
3344
if: failure()
3445
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)