Skip to content

Commit f34e40a

Browse files
committed
removed rtos folder from header building for now until all mcu have support
1 parent 6796a0e commit f34e40a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
BUILD_DIR="${{github.workspace}}/build"
141141
142142
# Find all header files (.hpp and .h)
143-
find "$HEADER_DIR" -type f \( -name "*.hpp" -o -name "*.h" \) | while read header_file; do
143+
find "$HEADER_DIR" -type f \( -name "*.hpp" -o -name "*.h" \) ! -path "$HEADER_DIR/rtos/*" | while read header_file; do
144144
# Get a safe name for the build (basename + replace / with _)
145145
header_name=$(basename "$header_file")
146146
safe_name=$(echo "$header_file" | sed 's/[^a-zA-Z0-9]/_/g')

0 commit comments

Comments
 (0)