summaryrefslogtreecommitdiff
path: root/script/autobuild.py
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2020-03-12 16:07:01 +1300
committerAndreas Schneider <asn@cryptomilk.org>2020-03-23 13:02:32 +0000
commit7a44bd1c422d7e20aa0e81fcc2d40a83b6414d1f (patch)
treefbdac55dfcad297b5b4871978f8f10ec358c2a6a /script/autobuild.py
parentfb2918bb048349e6793a17f2f6c35f96e033ab0f (diff)
downloadsamba-7a44bd1c422d7e20aa0e81fcc2d40a83b6414d1f.tar.gz
autobuild: Merge the samba-ktest-heimdal and samba-fileserver jobs
This avoids a full compile of Samba just to test Kerberos with a system Heimdal while still providing an environment to test other fileserver features. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-xscript/autobuild.py15
1 files changed, 3 insertions, 12 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index b9824b8bd3f..7850df08a92 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -322,22 +322,13 @@ tasks = {
"samba-fileserver": [
("random-sleep", random_sleep(300, 900)),
- ("configure", "./configure.developer --without-ad-dc --with-selftest-prefix=./bin/ab" + samba_configure_params),
+ ("configure", "./configure.developer --without-ad-dc --with-system-heimdalkrb5 --with-selftest-prefix=./bin/ab" + samba_configure_params),
("make", "make -j"),
("test", make_test(include_envs=[
"fileserver",
"maptoguest",
- ])),
- ("lcov", LCOV_CMD),
- ("check-clean-tree", "script/clean-source-tree.sh"),
- ],
-
- "samba-ktest-heimdal": [
- ("random-sleep", random_sleep(300, 900)),
- ("configure", "./configure.developer --without-ad-dc --with-system-heimdalkrb5 --with-selftest-prefix=./bin/ab" + samba_configure_params),
- ("make", "make -j"),
- ("test", make_test(include_envs=[
- "ktest",
+ "ktest", # ktest is also tested in samba and samba-mitkrb5
+ # but is tested here against a system Heimdal
])),
("lcov", LCOV_CMD),
("check-clean-tree", "script/clean-source-tree.sh"),