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 339d659 commit c02d8d9Copy full SHA for c02d8d9
.github/scripts/tests_run.sh
@@ -26,6 +26,12 @@ function run_test() {
26
sdkconfig_path="$HOME/.arduino/tests/$sketchname/build0.tmp/sdkconfig"
27
fi
28
29
+ if [ ! -f $sdkconfig_path ]; then
30
+ printf "\033[93mSketch not built: $sketchname\nMight be due to missing target requirements or build failure.\033[0m\n"
31
+ printf "\n\n\n"
32
+ return 0
33
+ fi
34
+
35
if [ -f $sketchdir/ci.json ]; then
36
# If the target or platform is listed as false, skip the sketch. Otherwise, include it.
37
is_target=$(jq -r --arg target $target '.targets[$target]' $sketchdir/ci.json)
0 commit comments