File tree 1 file changed +8
-4
lines changed 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ function build_sketches()
131
131
local build_cmd
132
132
build_cmd+=${cli_path}
133
133
build_cmd+=" compile" \
134
+ " --warnings=all" \
134
135
" --build-path $build_dir " \
135
136
" --fqbn $fqbn " \
136
137
" --libraries $library_path " \
@@ -307,20 +308,23 @@ function install_core()
307
308
fi
308
309
309
310
# Set our custom warnings for all builds
310
- { echo " compiler.c.extra_flags=-Wall -Wextra -Werror $debug_flags " ;
311
- echo " compiler.cpp.extra_flags=-Wall -Wextra -Werror $debug_flags " ;
312
- echo " mkbuildoptglobals.extra_flags=--ci --cache_core" ; } \
313
- > platform.local.txt
311
+ printf " %s\n" \
312
+ " compiler.c.extra_flags=-Wall -Wextra $debug_flags " \
313
+ " compiler.cpp.extra_flags=-Wall -Wextra $debug_flags " \
314
+ " mkbuildoptglobals.extra_flags=--ci --cache_core" \
315
+ > ${core_path} /platform.local.txt
314
316
echo -e " \n----platform.local.txt----"
315
317
cat platform.local.txt
316
318
echo -e " \n----\n"
317
319
320
+ # Fetch toolchain & filesystem utils
318
321
pushd tools
319
322
python3 get.py -q
320
323
321
324
popd
322
325
popd
323
326
327
+ # todo: windows runners are using copied tree
324
328
local core_dir
325
329
core_dir=$( dirname " $hardware_core_path " )
326
330
mkdir -p " $core_dir "
You can’t perform that action at this time.
0 commit comments