From 4365741fe59ac833fe04e4eaa591422fcb51504e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 2 May 2018 09:04:51 +1200 Subject: [PATCH] autobuild: Extend build combinations tested to include --without-ldap This bumps --without-ads to the samba-nt4 job so that option alone is still covered. Signed-off-by: Andrew Bartlett Reviewed-by: Gary Lockyer Reviewed-by: Douglas Bagnall --- script/autobuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/autobuild.py b/script/autobuild.py index e00eebda1c1..0ac65f138f1 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -121,7 +121,7 @@ tasks = { ("clean", "make clean", "text/plain") ], # We split out this so the isolated nt4_dc tests do not wait for ad_dc or ad_dc_ntvfs tests (which are long) - "samba-nt4" : [ ("configure", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"), + "samba-nt4" : [ ("configure", "./configure.developer --without-ads --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"), ("make", "make -j", "text/plain"), ("test", "make test FAIL_IMMEDIATELY=1 TESTS='--include-env=nt4_dc --include-env=nt4_member'", "text/plain"), ("install", "make install", "text/plain"), @@ -130,7 +130,7 @@ tasks = { # We split out this so the isolated ad_dc tests do not wait for ad_dc_ntvfs tests (which are long) "samba-fileserver" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"), - ("configure", "./configure.developer --without-ad-dc --without-ads --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"), + ("configure", "./configure.developer --without-ad-dc --without-ldap --without-ads --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"), ("make", "make -j", "text/plain"), ("test", "make test FAIL_IMMEDIATELY=1 TESTS='--include-env=fileserver'", "text/plain"), ("check-clean-tree", "script/clean-source-tree.sh", "text/plain")], -- 2.47.2