Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r1010:1c7ca3390961 Date: 2016-06-10 12:14 +0200 http://bitbucket.org/pypy/buildbot/changeset/1c7ca3390961/
Log: Fix buildbot to use (and require) the keyword argument version of package.py, in order to drop backward compatibility diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py --- a/bot2/pypybuildbot/builds.py +++ b/bot2/pypybuildbot/builds.py @@ -606,7 +606,8 @@ description="compress pypy-c", haltOnFailure=False, command=prefix + ["python", "pypy/tool/release/package.py", - "--targetdir=.", ".", WithProperties(name)], + "--targetdir=.", + "--archive-name", WithProperties(name)], workdir='build')) nightly = '~/nightly/' extension = get_extension(platform) @@ -734,7 +735,8 @@ self.addStep(ShellCmd( description="compress pypy-c", command=prefix + ["python", "pypy/tool/release/package.py", - "--targetdir=.", ".", WithProperties(name)], + "--targetdir=.", + "--archive-name", WithProperties(name)], haltOnFailure=True, workdir='build')) nightly = '~/nightly/' _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit