Skip to content

Commit

Permalink
ci: build: Make -O2 build name a 3-tuple as well (#274)
Browse files Browse the repository at this point in the history
All other job names are in 'X for Y with Z' form. Normalize the build
job name to that form as well for easier parsing.
  • Loading branch information
danobi authored May 29, 2024
1 parent b240a86 commit 1f722fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/kernel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ on:

jobs:
build:
name: build for ${{ inputs.arch }} with ${{ inputs.toolchain_full }}${{ inputs.release && ' and -O2 optimization' || '' }}
name: build for ${{ inputs.arch }} with ${{ inputs.toolchain_full }}${{ inputs.release && '-O2' || '' }}
runs-on: ${{ fromJSON(inputs.runs_on) }}
timeout-minutes: 100
env:
Expand Down

0 comments on commit 1f722fc

Please sign in to comment.