[pypy-commit] buildbot default: change --pypy-c to --changed

csenger noreply at buildbot.pypy.org
Mon Jan 30 19:35:41 CET 2012


Author: Carsten Senger <senger at rehfisch.de>
Branch: 
Changeset: r629:03858640be74
Date: 2012-01-25 14:05 +0100
http://bitbucket.org/pypy/buildbot/changeset/03858640be74/

Log:	change --pypy-c to --changed

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -358,7 +358,7 @@
             locks=[lock.access('exclusive')],
             description="run benchmarks on top of pypy-c",
             command=["python", "runner.py", '--output-filename', 'result.json',
-                     '--pypy-c', pypy_c_rel,
+                     '--changed', pypy_c_rel,
                      '--baseline', pypy_c_rel,
                      '--args', ',--jit off',
                      '--upload',
@@ -438,14 +438,14 @@
             locks=[lock.access('exclusive')],
             description="run benchmarks on top of cpython",
             command=["python", "runner.py", '--output-filename', 'result.json',
+                     '--changed', cpython_interpreter,
+                     '--baseline', './nullpython.py',
                      '--upload',
                      '--upload-project', 'cpython',
                      '--upload-executable', 'cpython2',
                      '--revision', WithProperties('%(got_revision)s'),
                      '--branch', WithProperties('%(branch)s'),
                      '--upload-urls', 'http://localhost/',
-                     '-p', cpython_interpreter,
-                     '--baseline', './nullpython.py',
                      ],
             workdir='./benchmarks',
             haltOnFailure=True,


More information about the pypy-commit mailing list