From e850967129d75f93432baa8fb0d899a366bd02cf Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 16 Aug 2021 13:40:39 +1200 Subject: [PATCH] autobuild.py: Explain why each job is removed from the default set Signed-off-by: Andrew Bartlett Reviewed-by: Andreas Schneider BUG: https://bugzilla.samba.org/show_bug.cgi?id=14817 (cherry picked from commit 167ad96136b42b5cb601decc0fc68c9603c8b172) --- script/autobuild.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/script/autobuild.py b/script/autobuild.py index b1dcece0093..d4a335c0320 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -1002,14 +1002,26 @@ defaulttasks = list(tasks.keys()) defaulttasks.remove("pass") defaulttasks.remove("fail") + +# The build tasks will be brought in by the test tasks as needed defaulttasks.remove("samba-def-build") defaulttasks.remove("samba-nt4-build") defaulttasks.remove("samba-mit-build") defaulttasks.remove("samba-h5l-build") defaulttasks.remove("samba-no-opath-build") + +# This is not a normal test, but a task to support manually running +# one test under autobuild defaulttasks.remove("samba-test-only") + +# Only built on GitLab CI and not in the default autobuild because it +# uses too much space (4GB of semi-static binaries) defaulttasks.remove("samba-fuzz") + +# The FIPS build runs only in GitLab CI on a current Fedora Docker +# container where a simulated FIPS mode is possible. defaulttasks.remove("samba-fips") + if os.environ.get("AUTOBUILD_SKIP_SAMBA_O3", "0") == "1": defaulttasks.remove("samba-o3") -- 2.11.4.GIT