diff options
author | Andrew Bartlett <abartlet@samba.org> | 2021-08-16 13:53:58 +1200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2021-08-26 06:16:35 +0000 |
commit | ff267c3c790c0ae9f276225f67fb543d6371cb53 (patch) | |
tree | 1eb4b8e9711eb99e614f8dae76c1abc7b9e4c80b /script | |
parent | 649b0741e17909afce762a5b84c1231600eec5f0 (diff) | |
download | samba-ff267c3c790c0ae9f276225f67fb543d6371cb53.tar.gz |
autobuild.py: Do not build MIT builds by default (eg sn-devel)
This avoids the need for MIT KDC tests and the MIT KDC glue code to
operate against the older MIT 1.16 found on Ubuntu 18.04, which
is our current build environment.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 1b2c4c18d6a..6a15722b263 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -1046,6 +1046,17 @@ defaulttasks.remove("samba-fuzz") # container where a simulated FIPS mode is possible. defaulttasks.remove("samba-fips") +# The MIT build runs on a current Fedora where an up to date MIT KDC +# is already packaged. This avoids needing to backport a current MIT +# to the default Ubuntu 18.04, particularly during development, and +# the need to install on the shared sn-devel-184. + +defaulttasks.remove("samba-mitkrb5") +defaulttasks.remove("samba-admem-mit") +defaulttasks.remove("samba-addc-mit-1") +defaulttasks.remove("samba-addc-mit-4a") +defaulttasks.remove("samba-addc-mit-4b") + if os.environ.get("AUTOBUILD_SKIP_SAMBA_O3", "0") == "1": defaulttasks.remove("samba-o3") |