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:
51
51
strategy :
52
52
matrix :
53
53
os :
54
- - [ubuntu, '18.04']
55
- - [ubuntu, '20.04']
56
- - [ubuntu, '22.04']
57
- - [ubuntu, '24.04']
54
+ - [almalinux, '8']
55
+ - [almalinux, '9']
58
56
- [debian, '10']
59
57
- [debian, '11']
60
58
- [debian, '12']
61
59
- [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']
62
66
steps :
63
67
- uses : actions/checkout@v4
64
68
with :
@@ -77,13 +81,19 @@ jobs:
77
81
openvox-collection : ${{ github.event.inputs.collection }}
78
82
openvox-released : ${{ github.event.inputs.pre-release-build == 'false' }}
79
83
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.
80
89
vms : |-
81
90
[
82
91
{
83
92
"role": "agent",
84
93
"count": 1,
85
94
"cpus": 2,
86
- "mem_mb": 4096
95
+ "mem_mb": 4096,
96
+ "cpu_mode": "host-model"
87
97
}
88
98
]
89
99
- name : Install Ruby and Run Bundler
You can’t perform that action at this time.
0 commit comments