1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

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>
This commit is contained in:
Andrew Bartlett 2020-03-12 16:07:01 +13:00 committed by Andreas Schneider
parent fb2918bb04
commit 7a44bd1c42
2 changed files with 3 additions and 16 deletions

View File

@ -190,9 +190,6 @@ samba-simpleserver:
samba-fileserver:
extends: .private_template
samba-ktest-heimdal:
extends: .private_template
samba-ad-dc-1:
extends: .private_template
@ -235,7 +232,6 @@ pages:
- samba-ad-dc-backup
- samba-simpleserver
- samba-fileserver
- samba-ktest-heimdal
- samba-ad-dc-1
- samba-nt4
- samba-schemaupgrade

View File

@ -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"),