From: Andreas Schneider Date: Fri, 15 May 2020 10:07:04 +0000 (+0200) Subject: autobuild: Add ad_member_fips target X-Git-Url: http://git.samba.org/?p=amitay%2Fsamba.git;a=commitdiff_plain;h=4fe51b27e0d474eb7ada2f4dbda5872616335462 autobuild: Add ad_member_fips target Reviewed-by: Alexander Bokovoy --- diff --git a/script/autobuild.py b/script/autobuild.py index a9eb980c7aa..8dcc96dc17e 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -499,6 +499,17 @@ tasks = { ("check-clean-tree", "script/clean-source-tree.sh"), ], + "samba-admem-fips": [ + ("random-sleep", random_sleep(1, 1)), + ("configure", "./configure.developer --with-selftest-prefix=./bin/ab --with-system-mitkrb5 --with-experimental-mit-ad-dc" + samba_configure_params), + ("make", "make -j"), + ("test", make_test(include_envs=[ + "ad_member_fips", + ])), + ("lcov", LCOV_CMD), + ("check-clean-tree", "script/clean-source-tree.sh"), + ], + "samba-ad-dc-1-mitkrb5": [ ("random-sleep", random_sleep(1, 1)), ("configure", "./configure.developer --with-selftest-prefix=./bin/ab --with-system-mitkrb5 --with-experimental-mit-ad-dc" + samba_configure_params), @@ -828,6 +839,7 @@ defaulttasks.remove("fail") defaulttasks.remove("samba-test-only") defaulttasks.remove("samba-fuzz") defaulttasks.remove("samba-ad-dc-fips") +defaulttasks.remove("samba-admem-fips") if os.environ.get("AUTOBUILD_SKIP_SAMBA_O3", "0") == "1": defaulttasks.remove("samba-o3")