mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Don't include skips in build successes
This commit is contained in:
parent
775e1e245a
commit
b879888690
1 changed files with 1 additions and 1 deletions
2
build.py
2
build.py
|
|
@ -265,6 +265,7 @@ for app in apps:
|
||||||
if p.returncode != 0:
|
if p.returncode != 0:
|
||||||
raise BuildException("Failed to align application")
|
raise BuildException("Failed to align application")
|
||||||
os.remove(dest_unsigned)
|
os.remove(dest_unsigned)
|
||||||
|
build_succeeded.append(app)
|
||||||
except BuildException as be:
|
except BuildException as be:
|
||||||
print "Could not build app %s due to BuildException: %s" % (app['id'], be)
|
print "Could not build app %s due to BuildException: %s" % (app['id'], be)
|
||||||
failed_apps[app['id']] = be
|
failed_apps[app['id']] = be
|
||||||
|
|
@ -274,7 +275,6 @@ for app in apps:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print "Could not build app %s due to unknown error: %s" % (app['id'], e)
|
print "Could not build app %s due to unknown error: %s" % (app['id'], e)
|
||||||
failed_apps[app['id']] = e
|
failed_apps[app['id']] = e
|
||||||
build_succeeded.append(app)
|
|
||||||
|
|
||||||
for app in build_succeeded:
|
for app in build_succeeded:
|
||||||
print "success: %s" % (app['id'])
|
print "success: %s" % (app['id'])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue