We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6796a0e commit f34e40aCopy full SHA for f34e40a
.github/workflows/build.yml
@@ -140,7 +140,7 @@ jobs:
140
BUILD_DIR="${{github.workspace}}/build"
141
142
# Find all header files (.hpp and .h)
143
- find "$HEADER_DIR" -type f \( -name "*.hpp" -o -name "*.h" \) | while read header_file; do
+ find "$HEADER_DIR" -type f \( -name "*.hpp" -o -name "*.h" \) ! -path "$HEADER_DIR/rtos/*" | while read header_file; do
144
# Get a safe name for the build (basename + replace / with _)
145
header_name=$(basename "$header_file")
146
safe_name=$(echo "$header_file" | sed 's/[^a-zA-Z0-9]/_/g')
0 commit comments