diff options
author | Andrew Bartlett <abartlet@samba.org> | 2021-08-16 13:40:39 +1200 |
---|---|---|
committer | Jule Anger <janger@samba.org> | 2021-09-08 12:32:11 +0000 |
commit | e850967129d75f93432baa8fb0d899a366bd02cf (patch) | |
tree | 8b749192fdfa7a8176518b1b6801d366e2ba6778 | |
parent | 521adb2fd3e65d8a6e6276265182958b967be59f (diff) | |
download | samba-e850967129d75f93432baa8fb0d899a366bd02cf.tar.gz |
autobuild.py: Explain why each job is removed from the default set
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14817
(cherry picked from commit 167ad96136b42b5cb601decc0fc68c9603c8b172)
-rwxr-xr-x | script/autobuild.py | 12 |
1 files changed, 12 insertions, 0 deletions
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") |