diff options
author | Noel Power <noel.power@suse.com> | 2018-11-29 14:21:27 +0000 |
---|---|---|
committer | Noel Power <npower@samba.org> | 2018-12-10 10:38:25 +0100 |
commit | ae5dd18162acaf4a0d2123d571f690c644791218 (patch) | |
tree | 3b4d413ded23e1d42b87c8daaed3e505e38af5a8 /script | |
parent | 0e35d741934eb1626f9a7aeacd9eb1a96e27546f (diff) | |
download | samba-ae5dd18162acaf4a0d2123d571f690c644791218.tar.gz |
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 <noel.power@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 12 |
1 files 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 |