Skip to content

Commit 2bfa983

Browse files
committed
Add runners for proper rocky 8 and 9 environments using containers like we now
do for the lint run on rocky.
1 parent 069c93d commit 2bfa983

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,23 @@ jobs:
5353
run: |
5454
make test
5555
56+
python3-rocky9:
57+
runs-on: ubuntu-22.04
58+
container:
59+
image: rockylinux/rockylinux:9
60+
steps:
61+
- name: Check out repository contents
62+
uses: actions/checkout@v3
63+
- name: Set up Python 3 with DNF
64+
run: |
65+
dnf install -y python3 python3-pip
66+
- name: Setup environment
67+
run: |
68+
make dependencies
69+
- name: Run tests
70+
run: |
71+
make test
72+
5673
python3-rocky8ish:
5774
runs-on: ubuntu-20.04
5875
steps:
@@ -69,6 +86,23 @@ jobs:
6986
run: |
7087
make test
7188
89+
python3-rocky8:
90+
runs-on: ubuntu-20.04
91+
container:
92+
image: rockylinux/rockylinux:8
93+
steps:
94+
- name: Check out repository contents
95+
uses: actions/checkout@v3
96+
- name: Set up Python 3 with DNF
97+
run: |
98+
dnf install -y python3 python3-pip
99+
- name: Setup environment
100+
run: |
101+
make dependencies
102+
- name: Run tests
103+
run: |
104+
make test
105+
72106
python2-latest:
73107
runs-on: ubuntu-latest
74108
container:

0 commit comments

Comments
 (0)