We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e70f4d3 commit eeb9335Copy full SHA for eeb9335
.github/scripts/sketch_utils.sh
@@ -416,10 +416,15 @@ function build_sketches(){ # build_sketches <ide_path> <user_path> <target> <pat
416
echo "Start Sketch: $start_num"
417
echo "End Sketch : $end_index"
418
419
+ #if fqbn is not passed then set it to default for compilation log
420
+ if [ -z $fqbn ]; then
421
+ log_fqbn="espressif:esp32:$target"
422
+ fi
423
+
424
sizes_file="$GITHUB_WORKSPACE/cli_compile_$chunk_index.json"
425
if [ $log_compilation ]; then
426
#echo board,target and start of sketches to sizes_file json
- echo "{ \"board\": \"$fqbn\",
427
+ echo "{ \"board\": \"$log_fqbn\",
428
\"target\": \"$target\",
429
\"sketches\": [" >> "$sizes_file"
430
fi
0 commit comments