Skip to content

Commit 0b57a31

Browse files
committed
test
1 parent 4fd0ca9 commit 0b57a31

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/scripts/install-platformio-esp32.sh

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ function build_pio_sketches(){ # build_pio_sketches <board> <options> <examples-
150150
fi
151151

152152
local has_requirements=$(${CHECK_REQUIREMENTS} $sketchdir "$SDKCONFIG_DIR/esp32/sdkconfig")
153+
echo "Requirements: $has_requirements"
153154
if [ "$has_requirements" == "0" ]; then
154155
continue
155156
fi

.github/scripts/sketch_utils.sh

+2
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [ex
213213
fi
214214

215215
local has_requirements=$(check_requirements "$sketchdir" "$SDKCONFIG_DIR/$target/sdkconfig")
216+
echo "Requirements: $has_requirements"
216217
if [ "$has_requirements" == "0" ]; then
217218
echo "Target $target does not meet the requirements for $sketchname. Skipping."
218219
exit 0
@@ -365,6 +366,7 @@ function count_sketches(){ # count_sketches <path> [target] [file] [ignore-requi
365366

366367
if [ "$ignore_requirements" != "1" ]; then
367368
local has_requirements=$(check_requirements "$sketchdir" "$SDKCONFIG_DIR/$target/sdkconfig")
369+
echo "Requirements: $has_requirements"
368370
if [ "$has_requirements" == "0" ]; then
369371
continue
370372
fi

.github/scripts/tests_run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ function run_test() {
3838
fi
3939

4040
local has_requirements=$(${CHECK_REQUIREMENTS} $sketchdir "$sdkconfig_path")
41+
echo "Requirements: $has_requirements"
4142
if [ "$has_requirements" == "0" ]; then
4243
printf "\033[93mTarget $target does not meet the requirements for $sketchname. Skipping.\033[0m\n"
4344
printf "\n\n\n"

0 commit comments

Comments
 (0)