[pypy-commit] buildbot default: add a step to get third party binaries

mattip pypy.commits at gmail.com
Mon Jan 29 12:14:42 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r1055:531d88ab56dc
Date: 2018-01-29 19:14 +0200
http://bitbucket.org/pypy/buildbot/changeset/531d88ab56dc/

Log:	add a step to get third party binaries

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -394,6 +394,14 @@
     #
     factory.addStep(CheckGotRevision(workdir=workdir))
 
+    factory.addStep(ShellCmd(
+        description="fetch external dependencies",
+        command=['python', 'get_externals.py',
+                 'platform=%s' % platform,],
+        flunkOnFailure=False,
+        haltOnFailure=False,
+        workdir=workdir))
+
     def extract_info(rc, stdout, stderr):
         if rc == 0:
             return json.loads(stdout)


More information about the pypy-commit mailing list