Skip to content

Commit

Permalink
autobuild.py: Do not build MIT builds by default (eg sn-devel)
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>
  • Loading branch information
abartlet authored and cryptomilk committed Aug 26, 2021
1 parent 649b074 commit ff267c3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions script/autobuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,6 +1046,17 @@ def make_test(
# 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")

Expand Down

0 comments on commit ff267c3

Please sign in to comment.