mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Need to see failures, not hide them above several hundred successes
This commit is contained in:
parent
adb98b059e
commit
bf3a9393cd
1 changed files with 6 additions and 4 deletions
10
build.py
10
build.py
|
|
@ -488,11 +488,13 @@ for app in apps:
|
|||
failed_apps[app['id']] = e
|
||||
build_succeeded.append(app)
|
||||
|
||||
for fa in failed_apps:
|
||||
print "Build for app %s failed: %s" % (fa, failed_apps[fa])
|
||||
|
||||
for app in build_succeeded:
|
||||
print "success: %s" % (app['id'])
|
||||
|
||||
print "Finished."
|
||||
for fa in failed_apps:
|
||||
print "Build for app %s failed: %s" % (fa, failed_apps[fa])
|
||||
|
||||
print "Finished."
|
||||
if len(failed_apps) > 0:
|
||||
print str(len(failed_apps)) + 'builds failed'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue