Skip to content

Commit 759c03b

Browse files
committed
Use FQBN for sketch compilation workflow job names
The "Compile Examples" workflow used to do a "smoke test" sketch compilation CI check uses a job matrix to compile the sketches for all boards of interest. By default, the matrix job is named by the matrix element for that job. This element includes board data used to make board-specific job customizations. That attribute data makes the job name, which is used to identify it in the checks status UI and workflow logs, fairly cryptic. The only information of interest to a human identifying the job is the FQBN. Defining a custom job name overrides the default job naming behavior.
1 parent c66e55c commit 759c03b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/compile-examples.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ on:
4848

4949
jobs:
5050
build:
51+
name: ${{ matrix.board.fqbn }}
5152
runs-on: ubuntu-latest
5253

5354
env:

0 commit comments

Comments
 (0)