Skip to content

Commit f71e5cb

Browse files
author
Dmitriy Rabotyagov
committed
Replace CentOS 8 Stream with Rockylinux
At the moment there's an issue with systemd in CentOS 8 image that prevents ansible to run properly against it. So we're replacing image with rockylinux that should not have an issue.
1 parent 855e21f commit f71e5cb

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
scenario:
19-
- centos-systemd:stream8
20-
- centos-systemd:stream9
21-
- debian-systemd:11
22-
- ubuntu-systemd:20.04
23-
- ubuntu-systemd:22.04
19+
- tag: rockylinux:8
20+
user: library
21+
- tag: centos-systemd:stream9
22+
user: quay.io/gotmax23
23+
- tag: debian-systemd:11
24+
user: quay.io/gotmax23
25+
- tag: ubuntu-systemd:20.04
26+
user: quay.io/gotmax23
27+
- tag: ubuntu-systemd:22.04
28+
user: quay.io/gotmax23
2429
python-version:
2530
- 3.8
2631
ansible-version:
@@ -48,5 +53,6 @@ jobs:
4853
- name: Test with molecule
4954
run: |
5055
cd ${{ github.repository }}
51-
export docker_image_tag="${{ matrix.scenario }}"
56+
export docker_image_tag="${{ matrix.scenario.tag }}"
57+
export docker_user="${{ matrix.scenario.user }}"
5258
python3 -m molecule test

0 commit comments

Comments
 (0)