👷 CI test without src filter (emulate Arduino) (#24335)

This commit is contained in:
ellensp 2022-06-15 20:02:32 +12:00 committed by Scott Lahteine
parent 25c0593c9b
commit cc27cfb660
2 changed files with 22 additions and 0 deletions

14
buildroot/bin/ci_src_filter Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# exit on first failure
set -e
SED=$(which gsed sed | head -n1)
FN="platformio.ini"
if [[ $1 == "-n" ]]; then
"${SED}" -i "s/default_src_filter/org_src_filter/" $FN
"${SED}" -i "/org_src_filter/ s/^/default_src_filter = +<src\/*>\n/" $FN
else
git checkout $FN 2>/dev/null
fi

View File

@ -12,6 +12,14 @@ set -e
#restore_configs #restore_configs
#exec_test $1 $2 "Default Configuration" "$3" #exec_test $1 $2 "Default Configuration" "$3"
#
# Build with no source filers
#
restore_configs
ci_src_filter -n
exec_test $1 $2 "Default Configuration | no source filtering" "$3"
ci_src_filter -y
# #
# Test a probeless build of AUTO_BED_LEVELING_UBL, with lots of extruders # Test a probeless build of AUTO_BED_LEVELING_UBL, with lots of extruders
# #