checkwps: have the ./buildall.sh script log all build failures.

Change-Id: I61be0fca0cb65e7c7108180150df5585fd83c3b5
This commit is contained in:
Solomon Peachy 2020-04-13 16:01:36 -04:00
parent abac7b2832
commit a87c96cd79
2 changed files with 8 additions and 1 deletions

View file

@ -40,12 +40,18 @@ then
exit
fi
echo > checkwps.failures
awk -f $rootdir/parse_configure.awk $rootdir/../configure | (
while read target model
do
make -j $jobs clean
$toolsdir/configure --target=$model --type=C --ram=32 --lcdwidth=100 --lcdheight=100 # 32 should always give default RAM, assume 100x100 for RaaA for now
make -j $jobs
mv checkwps.$model $outdir
if [ -f checkwps.$model ] ; then
mv checkwps.$model $outdir
else
echo "checkwps.$model" >> checkwps.failures
fi
done
)