summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-12 15:57:43 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-12 15:57:43 +0000
commitb7fec1393e4d9d7d9361dc42da2e26bdc39f3552 (patch)
treec8fc213c4cda8ef5b1d1814adbbb5dcdca6db001
parent3dbe37859217106584968bd958f7d3188a45bb71 (diff)
downloadmorph-b7fec1393e4d9d7d9361dc42da2e26bdc39f3552.tar.gz
TEMP: stub builds
-rw-r--r--morphlib/plugins/distbuild_plugin.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/morphlib/plugins/distbuild_plugin.py b/morphlib/plugins/distbuild_plugin.py
index 21c936c5..4ac80b17 100644
--- a/morphlib/plugins/distbuild_plugin.py
+++ b/morphlib/plugins/distbuild_plugin.py
@@ -100,16 +100,13 @@ class WorkerBuild(cliapp.Plugin):
bc = morphlib.buildcommand.BuildCommand(self.app)
- self.app.status(msg='Running a fake Morph build!')
-
- self.app.status(msg='Creating some files! %s' %
- artifact.source.files())
+ # Just show the chunk name.
+ self.app.status(msg='NAME: %s' % artifact.source.name)
for basename in artifact.source.files():
with bc.lac.put_file(basename) as f:
f.write('Nonsense data.\n')
- self.app.status(msg='Done!')
# Now, before we start the build, we garbage collect the caches
# to ensure we have room. First we remove all system artifacts
# since we never need to recover those from workers post-hoc