Skip to content

Commit 024a5db

Browse files
committed
Use custom matrix job names in sketch compilation CI job
The "Compile Examples" GitHub Actions workflow generates a matrix job for each board. The default job name is generated from the job's matrix object. This contains the complete board data, which results in a long and somewhat cryptic job name that can make the workflow run more difficult to interpret. The only necessary information is the FQBN. A custom job name allows for only using this information in the job name.
1 parent 70c5fc5 commit 024a5db

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919

2020
jobs:
2121
build:
22+
name: ${{ matrix.board.fqbn }}
2223
runs-on: ubuntu-latest
2324

2425
env:

0 commit comments

Comments
 (0)