]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
script/autobuild.py: do some basic testing using --without-winbind
authorStefan Metzmacher <metze@samba.org>
Tue, 6 Aug 2024 15:45:37 +0000 (17:45 +0200)
committerVolker Lendecke <vl@samba.org>
Wed, 7 Aug 2024 07:38:35 +0000 (07:38 +0000)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15687

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Wed Aug  7 07:38:35 UTC 2024 on atb-devel-224

script/autobuild.py

index e610f0e882190a428f4ea04ccc4897eba5898826..d059caec4711e26d9e586f07ff3fde9e18da49e2 100755 (executable)
@@ -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"),
         ],
     },