Skip to content

Commit b14b2bb

Browse files
committed
chore(ci): optimize job naming for native compilation
1 parent 9c84292 commit b14b2bb

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,23 @@ jobs:
4747
check_name: "JUnit Report"
4848
report_paths: "**/build/test-results/test/*.xml"
4949
nativeCompile:
50-
name: "run nativeCompile on relevant platforms"
50+
name: "${{ matrix.platform.name }} nativeCompile testing"
5151
needs: "gradleCheck"
5252
strategy:
5353
matrix:
54-
runner:
55-
- "ubuntu-latest"
56-
- "ubuntu-24.04-arm"
57-
- "windows-latest"
58-
- "macos-latest"
59-
- "macos-13"
54+
platform:
55+
- name: "Linux / x64"
56+
runner: "ubuntu-latest"
57+
- name: "Linux / arm"
58+
runner: "ubuntu-24.04-arm"
59+
- name: "Windows"
60+
runner: "windows-latest"
61+
- name: "macOS / arm"
62+
runner: "macos-latest"
63+
- name: "macOS / x64"
64+
runner: "macos-13"
6065
fail-fast: false
61-
runs-on: "${{ matrix.runner }}"
66+
runs-on: "${{ matrix.platform.runner }}"
6267
env:
6368
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "15"
6469
steps:

0 commit comments

Comments
 (0)