File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -790,6 +790,19 @@ function build_this_sketch()
790
790
local boardIssue=" missing bootloader"
791
791
boardIssueCount=$(( boardIssueCount + 1 ))
792
792
fi
793
+
794
+ local boardsDotTxtMissingRegex=" Could not find boards.txt"
795
+ if [[ " $outputFileLine " =~ $boardsDotTxtMissingRegex ]] > /dev/null; then
796
+ local boardIssue=" Could not find boards.txt"
797
+ boardIssueCount=$(( boardIssueCount + 1 ))
798
+ fi
799
+
800
+ local buildDotBoardNotDefinedRegex=" doesn't define a 'build.board' preference"
801
+ if [[ " $outputFileLine " =~ $buildDotBoardNotDefinedRegex ]] > /dev/null; then
802
+ local boardIssue=" doesn't define a 'build.board' preference"
803
+ boardIssueCount=$(( boardIssueCount + 1 ))
804
+ fi
805
+
793
806
done < " $ARDUINO_CI_SCRIPT_VERIFICATION_OUTPUT_FILENAME "
794
807
795
808
rm $ARDUINO_CI_SCRIPT_VERBOSITY_OPTION " $ARDUINO_CI_SCRIPT_VERIFICATION_OUTPUT_FILENAME "
You can’t perform that action at this time.
0 commit comments