From: Andrew Bartlett Date: Sat, 21 Mar 2020 19:15:30 +0000 (+1300) Subject: autobuild: Merge samba-simpleserver into samba-nt4 X-Git-Tag: ldb-2.2.0~1283 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9bdc5a674288a25d4aafda5cb105d57e5c5636f0;p=thirdparty%2Fsamba.git autobuild: Merge samba-simpleserver into samba-nt4 This saves CI resources (20mins build time) at the expense of making the samba-nt4 job take 45min (5 min longer). The new maximum job time is 1:15 by samba-o3 on the different hosts. Signed-off-by: Andrew Bartlett Reviewed-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Mon Mar 23 14:45:59 UTC 2020 on sn-devel-184 --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f46e78ffe2c..06890ee9c99 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -184,9 +184,6 @@ samba-ad-dc-4-mitkrb5: samba-ad-dc-backup: extends: .private_template -samba-simpleserver: - extends: .private_template - samba-fileserver: extends: .private_template @@ -230,7 +227,6 @@ pages: - samba-admem-mit - samba-ad-dc-4-mitkrb5 - samba-ad-dc-backup - - samba-simpleserver - samba-fileserver - samba-ad-dc-1 - samba-nt4 diff --git a/script/autobuild.py b/script/autobuild.py index 7850df08a92..3889d6ed620 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -296,12 +296,13 @@ tasks = { "samba-nt4": [ ("random-sleep", random_sleep(300, 900)), - ("configure", "./configure.developer --without-ads --without-ad-dc --with-selftest-prefix=./bin/ab" + samba_configure_params), + ("configure", "./configure.developer --without-ad-dc --without-ldap --without-ads --without-json --with-selftest-prefix=./bin/ab" + samba_configure_params), ("make", "make -j"), ("test", make_test(include_envs=[ "nt4_dc", "nt4_dc_schannel", "nt4_member", + "simpleserver", ])), ("lcov", LCOV_CMD), ("install", "make install"), @@ -309,17 +310,6 @@ tasks = { ("clean", "make clean"), ], - "samba-simpleserver": [ - ("random-sleep", random_sleep(300, 900)), - ("configure", "./configure.developer --without-ad-dc --without-ldap --without-ads --without-json --with-selftest-prefix=./bin/ab" + samba_configure_params), - ("make", "make -j"), - ("test", make_test(include_envs=[ - "simpleserver", - ])), - ("lcov", LCOV_CMD), - ("check-clean-tree", "script/clean-source-tree.sh"), - ], - "samba-fileserver": [ ("random-sleep", random_sleep(300, 900)), ("configure", "./configure.developer --without-ad-dc --with-system-heimdalkrb5 --with-selftest-prefix=./bin/ab" + samba_configure_params),