diff options
author | Andrew Bartlett <abartlet@samba.org> | 2018-05-02 09:04:51 +1200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2018-05-03 08:17:44 +0200 |
commit | 4365741fe59ac833fe04e4eaa591422fcb51504e (patch) | |
tree | 4b131423f681d393a1612769ebad27de41724389 | |
parent | 61244998048111e2100e7fb535b3c9338853cbed (diff) | |
download | samba-4365741fe59ac833fe04e4eaa591422fcb51504e.tar.gz |
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 <abartlet@samba.org>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
-rwxr-xr-x | script/autobuild.py | 4 |
1 files 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")], |