File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments