Skip to content

Commit 2ac4661

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 88849a8 commit 2ac4661

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
@@ -22,6 +22,7 @@ on:
2222

2323
jobs:
2424
build:
25+
name: ${{ matrix.board.fqbn }}
2526
runs-on: ubuntu-latest
2627

2728
env:

0 commit comments

Comments
 (0)