mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
checkwps: have the ./buildall.sh script log all build failures.
Change-Id: I61be0fca0cb65e7c7108180150df5585fd83c3b5
This commit is contained in:
parent
abac7b2832
commit
a87c96cd79
2 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue