summaryrefslogtreecommitdiff
path: root/script/autobuild.py
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2020-12-30 01:33:00 +0100
committerStefan Metzmacher <metze@samba.org>2021-04-13 08:23:35 +0000
commit95a9c3b29529e60643eeae2ef99e8b0ef7d43710 (patch)
treed3bbf8ab89d4102c94b3c4f334626d51888f92ef /script/autobuild.py
parent3189807278b0cb10007831ad84fa55c2cb14b125 (diff)
downloadsamba-95a9c3b29529e60643eeae2ef99e8b0ef7d43710.tar.gz
script/autobuild.py: split samba-no-opath into two tests
This was is basically a combination of 'samba-nt4' and 'samba-fileserver'. As a single job it used more than 1h only for testing, while the samba-no-nopath-build uses ~ 10mins (with a filled ccache). Now we have two test jobs with ~ 30mins. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-xscript/autobuild.py17
1 files changed, 15 insertions, 2 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 25e6291d7e5..a340d471297 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -442,12 +442,12 @@ tasks = {
],
},
- "samba-no-opath": {
+ "samba-no-opath1": {
"dependency": "samba-no-opath-build",
"sequence": [
("random-sleep", random_sleep(300, 900)),
("test", make_test(
- cmd="make test DISABLE_OPATH=1",
+ cmd="make testonly DISABLE_OPATH=1",
include_envs=[
"nt4_dc",
"nt4_dc_smb1",
@@ -455,6 +455,19 @@ tasks = {
"nt4_dc_schannel",
"nt4_member",
"simpleserver",
+ ])),
+ ("lcov", LCOV_CMD),
+ ("check-clean-tree", "script/clean-source-tree.sh"),
+ ],
+ },
+
+ "samba-no-opath2": {
+ "dependency": "samba-no-opath-build",
+ "sequence": [
+ ("random-sleep", random_sleep(300, 900)),
+ ("test", make_test(
+ cmd="make testonly DISABLE_OPATH=1",
+ include_envs=[
"fileserver",
"fileserver_smb1",
"fileserver_smb1_done",