[pypy-commit] buildbot default: HACK: don't upload branch names any more. see discussion on #pypy.

arigo pypy.commits at gmail.com
Tue Jan 12 14:30:32 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r981:1ffe17a64350
Date: 2016-01-12 20:30 +0100
http://bitbucket.org/pypy/buildbot/changeset/1ffe17a64350/

Log:	HACK: don't upload branch names any more. see discussion on #pypy.
	not sure it works, but the idea is to allow any branch to be
	displayed, even if it means they'll all end up in the same graphs.

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -809,14 +809,18 @@
                      '--upload-executable', 'pypy-c' + postfix,
                      '--upload-project', 'PyPy',
                      '--revision', WithProperties('%(got_revision)s'),
-                     '--branch', WithProperties('%(branch)s'),
+                     # HACK: branches are not uploaded any more, so that
+                     # codespeed will display it, even if not "default"
+                     #'--branch', WithProperties('%(branch)s'),
                      '--upload-urls', 'http://speed.pypy.org/',
                      '--upload-baseline',
                      '--upload-baseline-executable', 'pypy-c-jit' + postfix,
                      '--upload-baseline-project', 'PyPy',
                      '--upload-baseline-revision',
                      WithProperties('%(got_revision)s'),
-                     '--upload-baseline-branch', WithProperties('%(branch)s'),
+                     # HACK: branches are not uploaded any more, so that
+                     # codespeed will display it, even if not "default"
+                     #'--upload-baseline-branch', WithProperties('%(branch)s'),
                      '--upload-baseline-urls', 'http://speed.pypy.org/',
                      ],
             workdir='./benchmarks',


More information about the pypy-commit mailing list