-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.02 KB
/
compile-checks.yml
File metadata and controls
46 lines (43 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Compile Checks
on:
workflow_dispatch:
pull_request:
paths:
- '**.cpp'
- '**.hpp'
- '**.c'
- '**.h'
- '**.py'
- 'CMakeLists.txt'
branches:
- development
workflow_run:
workflows: [ "Build Toolchain Image" ]
types:
- completed
jobs:
compile-checks:
name: Check project compiles
strategy:
matrix:
preset:
- nucleo-debug
- nucleo-release
- nucleo-relwithdebinfo
- nucleo-debug-eth
- nucleo-release-eth
- nucleo-relwithdebinfo-eth
- board-debug
- board-release
- board-relwithdebinfo
- board-debug-eth-ksz8041
- board-debug-eth-lan8700
- board-release-eth-ksz8041
- board-release-eth-lan8700
- board-relwithdebinfo-eth-ksz8041
- board-relwithdebinfo-eth-lan8700
# - simulator
fail-fast: false
uses: ./.github/workflows/build.yml
with:
preset: ${{ matrix.preset }}