Skip to content

Commit 1c8ede1

Browse files
committed
ci: shorten sharded job names
1 parent 58c43d5 commit 1c8ede1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test-suite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
fail-fast: false
5959
matrix: ${{ fromJson(inputs.branch).jobs.ALPINE.matrix }}
60-
name: "ALPINE_X64_ASAN_DEBUG_ZTS${{ matrix.test_shards > 1 && format('_SHARD_{0}_OF_{1}', matrix.test_shard, matrix.test_shards) || '' }}"
60+
name: "ALPINE_X64_ASAN_DBG_ZTS${{ matrix.test_shards > 1 && format('_{0}-{1}', matrix.test_shard, matrix.test_shards) || '' }}"
6161
runs-on: ubuntu-24.04
6262
timeout-minutes: 180
6363
container:
@@ -137,7 +137,7 @@ jobs:
137137
strategy:
138138
fail-fast: false
139139
matrix: ${{ fromJson(inputs.branch).jobs.LINUX_X64.matrix }}
140-
name: "LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.test_mode == 'function-jit' && '_FUNCTION_JIT' || '' }}${{ matrix.test_shards > 1 && format('_SHARD_{0}_OF_{1}', matrix.test_shard, matrix.test_shards) || '' }}"
140+
name: "LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DBG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.test_mode == 'function-jit' && '_FUNCTION_JIT' || '' }}${{ matrix.test_shards > 1 && format('_{0}-{1}', matrix.test_shard, matrix.test_shards) || '' }}"
141141
runs-on: ubuntu-${{ fromJson(inputs.branch).config.ubuntu_version }}
142142
timeout-minutes: 180
143143
steps:
@@ -861,7 +861,7 @@ jobs:
861861
strategy:
862862
fail-fast: false
863863
matrix: ${{ fromJson(inputs.branch).jobs.WINDOWS.matrix }}
864-
name: "WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || ''}}${{ matrix.clang && '_CLANG' || ''}}${{ matrix.test_shards > 1 && format('_SHARD_{0}_OF_{1}', matrix.test_shard, matrix.test_shards) || '' }}"
864+
name: "WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || ''}}${{ matrix.clang && '_CLANG' || ''}}${{ matrix.test_shards > 1 && format('_{0}-{1}', matrix.test_shard, matrix.test_shards) || '' }}"
865865
runs-on: ${{ fromJson(inputs.branch).jobs.WINDOWS.config.runs_on }}
866866
timeout-minutes: 180
867867
env:

0 commit comments

Comments
 (0)