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
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 @@
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 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."""