Skip to content

Commit 45ae734

Browse files
authored
Merge pull request #23 from EmilienM/ci
CI: new versions of OpenStack & periodic jobs
2 parents e82a9cb + 3734441 commit 45ae734

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

.github/workflows/with-defaults.yml

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

57
jobs:
68
with_defaults:
@@ -11,15 +13,22 @@ jobs:
1113
openstack_version: ["master"]
1214
ubuntu_version: ["22.04"]
1315
include:
16+
- name: "master"
17+
openstack_version: "master"
18+
ubuntu_version: "22.04"
19+
additional_services: "openstack-cli-server"
20+
- name: "dalmatian"
21+
openstack_version: "stable/2024.2"
22+
ubuntu_version: "22.04"
23+
additional_services: "openstack-cli-server"
24+
- name: "caracal"
25+
openstack_version: "stable/2024.1"
26+
ubuntu_version: "22.04"
27+
additional_services: ""
1428
- name: "bobcat"
1529
openstack_version: "stable/2023.2"
1630
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"
31+
additional_services: ""
2332
runs-on: ubuntu-${{ matrix.ubuntu_version }}
2433
name: A job to deploy devstack with defaults
2534
steps:
@@ -29,6 +38,7 @@ jobs:
2938
uses: ./
3039
with:
3140
branch: ${{ matrix.openstack_version }}
41+
enabled_services: '${{ matrix.additional_services }}'
3242
- name: Upload logs artifacts on failure
3343
if: failure()
3444
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)