Skip to content

Commit 16ce58d

Browse files
authored
Merge pull request #38 from OpenVoxProject/add-rocky-alma-to-testing
(maint) Add rocky and almalinux to acceptance testing matrix
2 parents c56e14d + f09b733 commit 16ce58d

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

.github/workflows/acceptance.yaml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,18 @@ jobs:
5151
strategy:
5252
matrix:
5353
os:
54-
- [ubuntu, '18.04']
55-
- [ubuntu, '20.04']
56-
- [ubuntu, '22.04']
57-
- [ubuntu, '24.04']
54+
- [almalinux, '8']
55+
- [almalinux, '9']
5856
- [debian, '10']
5957
- [debian, '11']
6058
- [debian, '12']
6159
- [debian, '13', 'amd64', 'daily-latest']
60+
- [rocky, '8']
61+
- [rocky, '9']
62+
- [ubuntu, '18.04']
63+
- [ubuntu, '20.04']
64+
- [ubuntu, '22.04']
65+
- [ubuntu, '24.04']
6266
steps:
6367
- uses: actions/checkout@v4
6468
with:
@@ -77,13 +81,19 @@ jobs:
7781
openvox-collection: ${{ github.event.inputs.collection }}
7882
openvox-released: ${{ github.event.inputs.pre-release-build == 'false' }}
7983
openvox-artifacts-url: ${{ github.event.inputs.artifacts-url }}
84+
# Note: the cpu_mode is set to host-model for the sake of
85+
# el-9 which expects at least x86_64-2 arch. This depends on
86+
# the runner's architecture being sufficient, and there is
87+
# probably a better way to get this set on the libvirt
88+
# domain instead.
8089
vms: |-
8190
[
8291
{
8392
"role": "agent",
8493
"count": 1,
8594
"cpus": 2,
86-
"mem_mb": 4096
95+
"mem_mb": 4096,
96+
"cpu_mode": "host-model"
8797
}
8898
]
8999
- name: Install Ruby and Run Bundler

0 commit comments

Comments
 (0)