summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml4
-rwxr-xr-xscript/autobuild.py14
2 files changed, 2 insertions, 16 deletions
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),