Skip to content

Commit 94ad095

Browse files
authored
Adjust CI workflow for flat library layout
This is one of the few official libraries that still uses the old "flat layout", but the CI workflow was configured for the modern "recursive layout.
1 parent d935c23 commit 94ad095

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/compile-examples.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ on:
66
paths:
77
- ".github/workflows/compile-examples.yml"
88
- "examples/**"
9-
- "src/**"
9+
- "**.c"
10+
- "**.cpp"
11+
- "**.h"
12+
- "*.S"
1013
pull_request:
1114
paths:
1215
- ".github/workflows/compile-examples.yml"
1316
- "examples/**"
14-
- "src/**"
17+
- "**.c"
18+
- "**.cpp"
19+
- "**.h"
20+
- "*.S"
1521
schedule:
1622
# Run every Tuesday at 8 AM UTC to catch breakage caused by changes to external resources (libraries, platforms).
1723
- cron: "0 8 * * TUE"

0 commit comments

Comments
 (0)