summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2015-10-22 14:57:10 +1300
committerStefan Metzmacher <metze@samba.org>2016-01-05 09:10:24 +0100
commit05c34810a8184a67d2836fcae51ec8de8c4a46fc (patch)
tree4f553a5bd32f7c0c09747dae2e04275c1d91cd5c /script
parentaf89d18c141b2ea15cd661860db087bc40c0ec20 (diff)
downloadsamba-05c34810a8184a67d2836fcae51ec8de8c4a46fc.tar.gz
autobuild: Use make -j on samba-libs/samba-static build as well
We need this build to be fast when split out as a seperate VM Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index c0f65c0031f..9f0d8933d18 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -122,23 +122,23 @@ tasks = {
# retry with all modules shared
("allshared-distclean", "make distclean", "text/plain"),
("allshared-configure", samba_libs_configure_samba + " --with-shared-modules=ALL", "text/plain"),
- ("allshared-make", "make", "text/plain")],
+ ("allshared-make", "make -j", "text/plain")],
"samba-static" : [
("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
# build with all modules static
("allstatic-configure", "./configure.developer " + samba_configure_params + " --with-static-modules=ALL", "text/plain"),
- ("allstatic-make", "make", "text/plain"),
+ ("allstatic-make", "make -j", "text/plain"),
# retry without any required modules
("none-distclean", "make distclean", "text/plain"),
("none-configure", "./configure.developer " + samba_configure_params + " --with-static-modules=!FORCED,!DEFAULT --with-shared-modules=!FORCED,!DEFAULT", "text/plain"),
- ("none-make", "make", "text/plain"),
+ ("none-make", "make -j", "text/plain"),
# retry with nonshared smbd and smbtorture
("nonshared-distclean", "make distclean", "text/plain"),
("nonshared-configure", "./configure.developer " + samba_configure_params + " --bundled-libraries=talloc,tdb,pytdb,ldb,pyldb,tevent,pytevent --with-static-modules=ALL --nonshared-binary=smbtorture,smbd/smbd", "text/plain"),
- ("nonshared-make", "make", "text/plain")],
+ ("nonshared-make", "make -j", "text/plain")],
"ldb" : [
("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),