summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2015-10-22 13:54:41 +1300
committerJeremy Allison <jra@samba.org>2015-10-23 22:27:30 +0200
commit3e6af7109eb9d49328b426095580e4bfb2338ceb (patch)
tree4ae76f2f5ee2ee202e534ecb08d23412da2d1715 /script
parentd7cc5d459cbb063de9e5ff82487c383c00beb610 (diff)
downloadsamba-3e6af7109eb9d49328b426095580e4bfb2338ceb.tar.gz
autobuild: Confirm we can build without --enable-developer
We also confirm that such builds do not contain the NTVFS file server Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 209ad1f27cc..7e6609fd17d 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -112,10 +112,11 @@ tasks = {
("ldb-make", "cd lib/ldb && make", "text/plain"),
("ldb-install", "cd lib/ldb && make install", "text/plain"),
- ("configure", samba_libs_configure_samba, "text/plain"),
- ("make", "make", "text/plain"),
- ("install", "make install", "text/plain"),
- ("dist", "make dist", "text/plain"),
+ ("nondevel-configure", "./configure ${PREFIX}", "text/plain"),
+ ("nondevel-make", "make -j", "text/plain"),
+ ("nondevel-check", "./bin/smbd -b | grep WITH_NTVFS_FILESERVER && exit 1; exit 0", "text/plain"),
+ ("nondevel-install", "make install", "text/plain"),
+ ("nondevel-dist", "make dist", "text/plain"),
# retry with all modules shared
("allshared-distclean", "make distclean", "text/plain"),