Skip to content

Commit 74711f6

Browse files
committed
Trim matrix values
1 parent 50e6c06 commit 74711f6

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
test-defaults:
2222
name: Defaults
23-
runs-on: ${{ matrix.os }}
23+
runs-on: ubuntu-${{ matrix.os }}
2424
steps:
2525
# \todo Remove this step when https://github.com/actions/partner-runner-images/issues/25 is resolved.
2626
- name: Correct broken $PATH on Linux arm64 runners
@@ -34,15 +34,15 @@ jobs:
3434
strategy:
3535
matrix:
3636
os:
37-
- ubuntu-22.04
38-
- ubuntu-22.04-arm
39-
- ubuntu-24.04
40-
- ubuntu-24.04-arm
37+
- 22.04
38+
- 22.04-arm
39+
- 24.04
40+
- 24.04-arm
4141
fail-fast: false
4242

4343
test-options:
4444
name: Options
45-
runs-on: ${{ matrix.os }}
45+
runs-on: ubuntu-${{ matrix.os }}
4646
steps:
4747
# \todo Remove this step when https://github.com/actions/partner-runner-images/issues/25 is resolved.
4848
- name: Correct broken $PATH on Linux arm64 runners
@@ -83,15 +83,15 @@ jobs:
8383
strategy:
8484
matrix:
8585
os:
86-
- ubuntu-22.04
87-
- ubuntu-22.04-arm
88-
- ubuntu-24.04
89-
- ubuntu-24.04-arm
86+
- 22.04
87+
- 22.04-arm
88+
- 24.04
89+
- 24.04-arm
9090
fail-fast: false
9191

9292
test-plugins:
9393
name: Plugins
94-
runs-on: ${{ matrix.os }}
94+
runs-on: ubuntu-${{ matrix.os }}
9595
env:
9696
PLUGINS: >-
9797
appimage
@@ -139,15 +139,15 @@ jobs:
139139
strategy:
140140
matrix:
141141
os:
142-
- ubuntu-22.04
143-
- ubuntu-22.04-arm
144-
- ubuntu-24.04
145-
- ubuntu-24.04-arm
142+
- 22.04
143+
- 22.04-arm
144+
- 24.04
145+
- 24.04-arm
146146
fail-fast: false
147147

148148
test-architectures:
149-
name: Architectures
150-
runs-on: ${{ matrix.os }}${{ matrix.arch == 'aarch64' && '-arm' || '' }}
149+
name: Archs
150+
runs-on: unbuntu-${{ matrix.os }}${{ matrix.arch == 'aarch64' && '-arm' || '' }}
151151
env:
152152
# These should all be the latest official releases, however most (all?) plugins don't have official releases yet.
153153
PLUGINS: >-
@@ -193,6 +193,6 @@ jobs:
193193
- static-x86_64
194194
- x86_64
195195
os:
196-
- ubuntu-22.04
197-
- ubuntu-24.04
196+
- 22.04
197+
- 24.04
198198
fail-fast: false

0 commit comments

Comments
 (0)