autobuild: Add ad_member_fips target
authorAndreas Schneider <asn@samba.org>
Fri, 15 May 2020 10:07:04 +0000 (12:07 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 18 May 2020 14:43:40 +0000 (14:43 +0000)
Reviewed-by: Alexander Bokovoy <ab@samba.org>
script/autobuild.py

index a9eb980c7aab4900885017358f99a1408b085f1f..8dcc96dc17e19144bcf7372d87ae5880216f7514 100755 (executable)
@@ -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")