Skip to content

Commit f2b14fe

Browse files
thaJeztahndeloof
authored andcommitted
gha: use custom names for matrix
Manually enumerate the combinations ((plugin|standalone), (version)) so that we can assign a predictable name ("stable", "oldstable") and prevent having to update the branch-protection rules for each update to mark the tests as required. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent bd2257b commit f2b14fe

1 file changed

Lines changed: 17 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,26 @@ jobs:
149149
if: always()
150150
e2e:
151151
runs-on: ubuntu-latest
152+
name: e2e (${{ matrix.mode }}, ${{ matrix.channel }})
152153
strategy:
153154
fail-fast: false
154155
matrix:
155-
mode:
156-
- plugin
157-
- standalone
158-
engine:
159-
- 28 # old stable (latest major - 1)
160-
- 29 # current stable
156+
include:
157+
# current stable
158+
- mode: plugin
159+
engine: 29
160+
channel: stable
161+
- mode: standalone
162+
engine: 29
163+
channel: stable
164+
165+
# old stable (latest major - 1)
166+
- mode: plugin
167+
engine: 28
168+
channel: oldstable
169+
- mode: standalone
170+
engine: 28
171+
channel: oldstable
161172
steps:
162173
- name: Prepare
163174
run: |

0 commit comments

Comments
 (0)