Skip to content

Commit b3fcc1b

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 e15c3bd commit b3fcc1b

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
@@ -24,6 +24,7 @@ on:
2424

2525
jobs:
2626
build:
27+
name: ${{ matrix.board.fqbn }}
2728
runs-on: ubuntu-latest
2829

2930
env:

0 commit comments

Comments
 (0)