ci: use system as build name

This commit is contained in:
Matt Sturgeon 2025-05-25 23:55:11 +01:00
parent 920f15638e
commit 73ca23dd44
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 1 additions and 5 deletions

View file

@ -3,9 +3,6 @@ name: Build
on: on:
workflow_call: workflow_call:
inputs: inputs:
name:
required: true
type: string
builds: builds:
description: "json array of builds: [ { system, runner, attr } ]" description: "json array of builds: [ { system, runner, attr } ]"
required: true required: true
@ -17,7 +14,7 @@ on:
jobs: jobs:
build: build:
name: ${{ inputs.name }} (${{ matrix.attr }}) name: (${{ matrix.system }})
runs-on: runs-on:
- ${{ matrix.runner }} - ${{ matrix.runner }}
strategy: strategy:

View file

@ -41,5 +41,4 @@ jobs:
include: ${{ fromJSON(needs.prepare.outputs.matrix) }} include: ${{ fromJSON(needs.prepare.outputs.matrix) }}
secrets: inherit secrets: inherit
with: with:
name: ${{ matrix.name }}
builds: ${{ toJSON(matrix.builds) }} builds: ${{ toJSON(matrix.builds) }}