File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ jobs:
14
14
15
15
cmake-fedora-latest :
16
16
name : cmake-fedora-latest
17
- runs-on : ubuntu-latest
17
+ runs-on : ${{ matrix.os }}
18
18
strategy :
19
- fail-fast : false
20
- matrix :
21
- compiler : [ gcc, clang ]
19
+ fail-fast : false
20
+ matrix :
21
+ compiler : [ gcc, clang ]
22
+ os : [ ubuntu-latest, ubuntu-24.04-arm ]
22
23
steps :
23
24
- name : Checkout
24
25
uses : actions/checkout@v4
42
43
podman build .
43
44
44
45
make-fedora-latest :
45
- runs-on : ubuntu-latest
46
+ runs-on : ${{ matrix.os }}
47
+ strategy :
48
+ matrix :
49
+ os : [ ubuntu-latest, ubuntu-24.04-arm ]
46
50
steps :
47
51
- name : Checkout
48
52
uses : actions/checkout@v4
@@ -188,7 +192,10 @@ jobs:
188
192
retention-days : 0
189
193
190
194
cmake-windows-latest :
191
- runs-on : windows-latest
195
+ runs-on : ${{ matrix.os }}
196
+ strategy :
197
+ matrix :
198
+ os : [ windows-latest, windows-11-arm ]
192
199
env :
193
200
APACHE_LOUNGE_DISTRO_VERSION : 2.4.63-250122
194
201
HTTPD_DEV_HOME : ' C:\Apache24'
@@ -220,7 +227,7 @@ jobs:
220
227
uses : actions/upload-artifact@v4
221
228
if : always()
222
229
with :
223
- name : Windows logs
230
+ name : Windows logs for ${{ matrix.os }}
224
231
path : C:\Apache24\logs\
225
232
retention-days : 7
226
233
You can’t perform that action at this time.
0 commit comments