Skip to content

Commit 9669013

Browse files
committed
fix(builders): drop win32→win in job-name templates too
Companion to 985f77c8 — that commit removed the legacy win32→win transform in artifact-name shell logic but missed the matching job-name templates that displayed 'lief / win-arm64' etc. Now the job title in the GitHub Actions UI matches the asset filename (lief / win32-arm64 → lief-win32-arm64.tar.gz). Cosmetic for in-flight runs; no cache bump needed.
1 parent 216e4ca commit 9669013

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/binsuite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
permissions:
7676
contents: read
7777
id-token: write # OIDC authentication for Depot builds
78-
name: binpress / ${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
78+
name: binpress / ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
7979
runs-on: ${{ matrix.runner }}
8080
timeout-minutes: 30
8181
if: inputs.tools == 'all' || contains(inputs.tools, 'binpress')
@@ -512,7 +512,7 @@ jobs:
512512
permissions:
513513
contents: read
514514
id-token: write # OIDC authentication for Depot builds
515-
name: binflate / ${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
515+
name: binflate / ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
516516
runs-on: ${{ matrix.runner }}
517517
timeout-minutes: 30
518518
if: inputs.tools == 'all' || contains(inputs.tools, 'binflate')
@@ -900,7 +900,7 @@ jobs:
900900
permissions:
901901
contents: read
902902
id-token: write # OIDC authentication for Depot builds
903-
name: binject / ${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
903+
name: binject / ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
904904
runs-on: ${{ matrix.runner }}
905905
timeout-minutes: 30
906906
if: inputs.tools == 'all' || contains(inputs.tools, 'binject')

.github/workflows/curl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
permissions:
5353
contents: read
5454
id-token: write # OIDC authentication for Depot builds
55-
name: curl / ${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
55+
name: curl / ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
5656
runs-on: ${{ matrix.runner }}
5757
timeout-minutes: 30
5858
strategy:

.github/workflows/lief.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
permissions:
5353
contents: read
5454
id-token: write # OIDC authentication for Depot builds
55-
name: lief / ${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
55+
name: lief / ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
5656
runs-on: ${{ matrix.runner }}
5757
timeout-minutes: 60
5858
strategy:

.github/workflows/node-smol.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
permissions:
6767
contents: read
6868
id-token: write # OIDC authentication for Depot.dev builds
69-
name: Build (${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }})
69+
name: Build (${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }})
7070
runs-on: ${{ matrix.runner }}
7171
timeout-minutes: 210
7272
strategy:

.github/workflows/stubs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
# write when it actually creates a GitHub Release.
5353
contents: read
5454
id-token: write # OIDC authentication for Depot builds
55-
name: stub / ${{ matrix.platform == 'win32' && 'win' || matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
55+
name: stub / ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.libc == 'musl' && '-musl' || '' }}
5656
runs-on: ${{ matrix.runner }}
5757
timeout-minutes: 20
5858
strategy:

0 commit comments

Comments
 (0)