aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Garrett <dgarrett@google.com>2016-06-01 14:39:02 -0700
committerDon Garrett <dgarrett@google.com>2016-06-01 14:53:37 -0700
commit889976844dfc64ae38fe7e575ffdb35b72d0db43 (patch)
treefe6225d57f798473c16d3cb91ea015a255ac5bc1
parent282128fa23535cb5a5cd96fe1d828b3c933f8d65 (diff)
downloadbbuildbot_config-889976844dfc64ae38fe7e575ffdb35b72d0db43.tar.gz
sync: Add dump of pinned manifest.
Log the brillo manifest that was just sync'd, after we finish syncing it. BUG=chromium:614508 TEST=Local build. Change-Id: Ic37f1ae6982c77f8e71053aa6adcf946a1e3b2f0
-rw-r--r--builders/brillo_builders.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/builders/brillo_builders.py b/builders/brillo_builders.py
index 7543606..1c562bd 100644
--- a/builders/brillo_builders.py
+++ b/builders/brillo_builders.py
@@ -92,6 +92,8 @@ class BrilloSyncStage(BrilloStageBase):
brillo_repo.Initialize()
brillo_repo.Sync()
+ logging.info('Syncd manifest:\n%s', brillo_repo.ExportManifest())
+
class BrilloBuildStage(BrilloStageBase):
"""Compile the Brillo checkout."""
@@ -203,7 +205,7 @@ class BrilloVmTestStage(BrilloStageBase):
class BrilloBuilder(generic_builders.Builder):
- """Builder that performs sync, then exits."""
+ """Builder for TOT brillo plus VM Tests."""
def GetSyncInstance(self):
"""Returns an instance of a SyncStage that should be run."""