mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 15:32:14 +02:00
bitbake: toaster: delete multiple builds
This patch fixes the build deletion on unmigrated databases, and enhances it to delete multiple builds in a single run. [YOCTO #7726] (Bitbake rev: d5468d84c1ef83c780de5974c8e3a11eab762489) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5d0abf197a
commit
8ef5165b5a
@@ -64,9 +64,9 @@ def _get_latest_builds(prj=None):
|
||||
if prj is not None:
|
||||
queryset = queryset.filter(project = prj)
|
||||
|
||||
return itertools.chain(
|
||||
return list(itertools.chain(
|
||||
queryset.filter(outcome=Build.IN_PROGRESS).order_by("-pk"),
|
||||
queryset.filter(outcome__lt=Build.IN_PROGRESS).order_by("-pk")[:3] )
|
||||
queryset.filter(outcome__lt=Build.IN_PROGRESS).order_by("-pk")[:3] ))
|
||||
|
||||
|
||||
# a JSON-able dict of recent builds; for use in the Project page, xhr_ updates, and other places, as needed
|
||||
|
||||
@@ -1,33 +1,49 @@
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from orm.models import Build
|
||||
from django.db import OperationalError
|
||||
import os
|
||||
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
args = "buildId"
|
||||
help = "Deletes selected build"
|
||||
help = "Deletes selected build(s)"
|
||||
|
||||
def handle(self, buildId, *args, **options):
|
||||
b = Build.objects.get(pk = buildId)
|
||||
# theoretically, just b.delete() would suffice
|
||||
# however SQLite runs into problems when you try to
|
||||
# delete too many rows at once, so we delete some direct
|
||||
# relationships from Build manually.
|
||||
for bid in buildId.split(","):
|
||||
b = Build.objects.get(pk = bid)
|
||||
# theoretically, just b.delete() would suffice
|
||||
# however SQLite runs into problems when you try to
|
||||
# delete too many rows at once, so we delete some direct
|
||||
# relationships from Build manually.
|
||||
for t in b.target_set.all():
|
||||
t.delete()
|
||||
for t in b.task_build.all():
|
||||
t.delete()
|
||||
for p in b.package_set.all():
|
||||
p.delete()
|
||||
for lv in b.layer_version_build.all():
|
||||
lv.delete()
|
||||
for v in b.variable_build.all():
|
||||
v.delete()
|
||||
for l in b.logmessage_set.all():
|
||||
l.delete()
|
||||
|
||||
for t in b.target_set.all():
|
||||
t.delete()
|
||||
for t in b.task_build.all():
|
||||
t.delete()
|
||||
for p in b.package_set.all():
|
||||
p.delete()
|
||||
for lv in b.layer_version_build.all():
|
||||
lv.delete()
|
||||
for v in b.variable_build.all():
|
||||
v.delete()
|
||||
for l in b.logmessage_set.all():
|
||||
l.delete()
|
||||
# delete the build; some databases might have had problem with migration of the bldcontrol app
|
||||
retry_count = 0
|
||||
need_bldcontrol_migration = False
|
||||
while True:
|
||||
if retry_count >= 5:
|
||||
break
|
||||
retry_count += 1
|
||||
if need_bldcontrol_migration:
|
||||
from django.core import management
|
||||
management.call_command('migrate', 'bldcontrol', interactive=False)
|
||||
|
||||
# this should take care of the rest
|
||||
b.delete()
|
||||
try:
|
||||
b.delete()
|
||||
break
|
||||
except OperationalError as e:
|
||||
# execute migrations
|
||||
need_bldcontrol_migration = True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user