[gnome-continuous-yocto/gnomeostree-3.28-rocko: 6851/8267] bitbake: toaster: set clone progress default to off
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous-yocto/gnomeostree-3.28-rocko: 6851/8267] bitbake: toaster: set clone progress default to off
- Date: Sun, 17 Dec 2017 05:25:29 +0000 (UTC)
commit a25ece2d77f28e71a71913ea25391bcbc8fa37e0
Author: David Reyna <David Reyna windriver com>
Date: Tue Jul 11 14:56:09 2017 -0700
bitbake: toaster: set clone progress default to off
Set the clone progress to be off by default for the benefit of
command line projects and 'Local Yocto' builds. For Toaster managed
projects that do use the clone feature the clone progress status
is already explicitly set by the existing code and thus displayed.
[YOCTO #11744]
(Bitbake rev: d25a3088150b2a277242027c12becdeb88c45517)
Signed-off-by: David Reyna <David Reyna windriver com>
Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>
.../toaster/orm/migrations/0016_clone_progress.py | 4 ++--
bitbake/lib/toaster/orm/models.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/bitbake/lib/toaster/orm/migrations/0016_clone_progress.py
b/bitbake/lib/toaster/orm/migrations/0016_clone_progress.py
index 852b878..cd4023b 100644
--- a/bitbake/lib/toaster/orm/migrations/0016_clone_progress.py
+++ b/bitbake/lib/toaster/orm/migrations/0016_clone_progress.py
@@ -13,12 +13,12 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='build',
name='repos_cloned',
- field=models.IntegerField(default=0),
+ field=models.IntegerField(default=1),
),
migrations.AddField(
model_name='build',
name='repos_to_clone',
- field=models.IntegerField(default=1),
+ field=models.IntegerField(default=1), # (default off)
),
]
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index e9182c5..05cc5a8 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -456,8 +456,8 @@ class Build(models.Model):
# number of repos to clone for this build
repos_to_clone = models.IntegerField(default=1)
- # number of repos cloned so far for this build
- repos_cloned = models.IntegerField(default=0)
+ # number of repos cloned so far for this build (default off)
+ repos_cloned = models.IntegerField(default=1)
@staticmethod
def get_recent(project=None):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]