From ae5dd18162acaf4a0d2123d571f690c644791218 Mon Sep 17 00:00:00 2001 From: Noel Power Date: Thu, 29 Nov 2018 14:21:27 +0000 Subject: [PATCH] autobuild: Modify old samba_buildpy3_only job to python2 Since autobuild now builds python3 by default we need to change the previously buildpy3 only job to python2 Signed-off-by: Noel Power Reviewed-by: Andrew Bartlett --- script/autobuild.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/script/autobuild.py b/script/autobuild.py index a7eb628ed65..f8a5e2e4314 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -53,7 +53,7 @@ builddirs = { "samba-ad-dc-2-py3": ".", "samba-systemkrb5": ".", "samba-nopython": ".", - "samba-buildpy3-only": ".", + "samba-buildpy2-only": ".", "ldb": "lib/ldb", "tdb": "lib/tdb", "talloc": "lib/talloc", @@ -399,12 +399,12 @@ tasks = { ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"), ("clean", "make clean", "text/plain")], - "samba-buildpy3-only": [("random-sleep", "script/random-sleep.sh 60 600", "text/plain"), - ("configure", "PYTHON='python3' ./configure.developer --with-selftest-prefix=./bin/ab " + samba_configure_params, "text/plain"), - ("make", "PYTHON='python3' make -j", "text/plain"), - ("install", "PYTHON='python3' make install", "text/plain"), + "samba-buildpy2-only": [("random-sleep", "script/random-sleep.sh 60 600", "text/plain"), + ("configure", "PYTHON='python' ./configure.developer --with-selftest-prefix=./bin/ab " + samba_configure_params, "text/plain"), + ("make", "PYTHON='python' make -j", "text/plain"), + ("install", "PYTHON='python' make install", "text/plain"), ("check-clean-tree", "script/clean-source-tree.sh", "text/plain"), - ("clean", "PYTHON='python3' make clean", "text/plain")], + ("clean", "PYTHON='python' make clean", "text/plain")], # these are useful for debugging autobuild -- 2.34.1