Skip to content

Commit 152edef

Browse files
[libc][Github] Use explicit names for libc overlay tests (#219783)
1 parent 49b1085 commit 152edef

1 file changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/libc-overlay-tests.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
native:
1313
if: github.repository_owner == 'llvm'
14-
name: ${{ matrix.os }} - ${{ matrix.compiler.c_compiler }}
14+
name: ${{ matrix.name }}
1515
timeout-minutes: 60
1616
runs-on: ${{ matrix.os }}
1717
container: ${{ matrix.container || null }}
@@ -21,27 +21,32 @@ jobs:
2121
matrix:
2222
include:
2323
# TODO: add linux gcc when it is fixed
24-
- os: ubuntu-24.04
24+
- name: linux-x86_64
25+
os: ubuntu-24.04
2526
container: 'ghcr.io/llvm/libc-ubuntu-24.04:latest@sha256:c6e2ee2a9bf5cebd51fd27dd8e85381c2f73d90e091c764082f8ad528ee18918'
2627
compiler:
2728
c_compiler: clang-23
2829
cpp_compiler: clang++-23
2930
linker: lld-23
30-
- os: ubuntu-24.04-arm
31+
- name: linux-aarch64
32+
os: ubuntu-24.04-arm
3133
container: 'ghcr.io/llvm/arm64v8/libc-ubuntu-24.04:latest@sha256:138636a45bb70f7b51a858b282e66291cb3c5c85371afee09032a5e09b263395'
3234
compiler:
3335
c_compiler: clang-23
3436
cpp_compiler: clang++-23
3537
linker: lld-23
36-
- os: windows-2022
38+
- name: windows2022-x86_64
39+
os: windows-2022
3740
compiler:
3841
c_compiler: clang-cl
3942
cpp_compiler: clang-cl
40-
- os: windows-2025
43+
- name: windows2025-x86_64
44+
os: windows-2025
4145
compiler:
4246
c_compiler: clang-cl
4347
cpp_compiler: clang-cl
44-
- os: macos-15
48+
- name: macos-aarch64
49+
os: macos-15
4550
compiler:
4651
c_compiler: clang
4752
cpp_compiler: clang++

0 commit comments

Comments
 (0)