We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a633b95 commit 44880e2Copy full SHA for 44880e2
1 file changed
.github/workflows/compile-examples.yml
@@ -18,3 +18,28 @@ on:
18
workflow_dispatch:
19
20
jobs:
21
+ build-for-stm32:
22
+ runs-on: ubuntu-latest
23
+
24
+ strategy:
25
+ matrix:
26
+ fqbn:
27
+ - STMicroelectronics:stm32:Eval:pnum=STEVAL_MKSBOX1V1,usb=CDCgen
28
+ - STMicroelectronics:stm32:Nucleo_64:pnum=NUCLEO_L476RG
29
+ - STMicroelectronics:stm32:Disco:pnum=B_L475E_IOT01A
30
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - uses: arduino/compile-sketches@v1
34
+ with:
35
+ github-token: ${{ secrets.GITHUB_TOKEN }}
36
+ fqbn: ${{ matrix.fqbn }}
37
+ platforms: |
38
+ - name: STMicroelectronics:stm32
39
+ source-url: https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
40
+ sketch-paths: |
41
+ - examples
42
+ cli-compile-flags: |
43
+ - --build-property
44
+ - build.extra_flags=-DIDB05A2_SPI_CLOCK_D3
45
0 commit comments