From: Stefan Metzmacher Date: Tue, 6 Aug 2024 15:45:37 +0000 (+0200) Subject: script/autobuild.py: do some basic testing using --without-winbind X-Git-Tag: tdb-1.4.13~1399 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0d0767a3ab2c0cd5c4f2fa5cd77f3b678794d63;p=thirdparty%2Fsamba.git script/autobuild.py: do some basic testing using --without-winbind BUG: https://bugzilla.samba.org/show_bug.cgi?id=15687 Signed-off-by: Stefan Metzmacher Reviewed-by: Volker Lendecke Autobuild-User(master): Volker Lendecke Autobuild-Date(master): Wed Aug 7 07:38:35 UTC 2024 on atb-devel-224 --- diff --git a/script/autobuild.py b/script/autobuild.py index e610f0e8821..d059caec471 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -1082,6 +1082,15 @@ tasks = { ("nonshared-lcov", LCOV_CMD), ("nonshared-check-clean-tree", CLEAN_SOURCE_TREE_CMD), ("nonshared-clean", "make clean"), + + # retry without winbindd + ("nonwinbind-distclean", "make distclean"), + ("nonwinbind-configure", "./configure.developer " + samba_configure_params + " --bundled-libraries=ALL --with-static-modules=ALL --without-winbind"), + ("nonwinbind-make", "make -j"), + ("nonwinbind-test", make_test(TESTS="samba3.smb2.*.simpleserver")), + ("nonwinbind-lcov", LCOV_CMD), + ("nonwinbind-check-clean-tree", CLEAN_SOURCE_TREE_CMD), + ("nonwinbind-clean", "make clean"), ], },