diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-22 14:35:08 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-28 12:17:10 +1000 |
commit | fb67cea6803650e0696fc45a2a8475728dbb18f0 (patch) | |
tree | 2f948858b1ff5d71f7de24ce0c26c1d3d9e78055 /script | |
parent | 4e76a77f622f1fa30a8ae1e011d87fc9754e1b85 (diff) | |
download | samba-fb67cea6803650e0696fc45a2a8475728dbb18f0.tar.gz samba-fb67cea6803650e0696fc45a2a8475728dbb18f0.tar.bz2 samba-fb67cea6803650e0696fc45a2a8475728dbb18f0.zip |
autobuild: Remove samba3 and samba3-ctdb targets to allow autoconf removal for 4.1
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 8c88dc91f8..dba2ce4bdc 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -33,31 +33,9 @@ builddirs = { "retry" : "." } -defaulttasks = [ "samba3", "samba3-ctdb", "samba", "samba-ctdb", "samba-libs", "ldb", "tdb", "ntdb", "talloc", "replace", "tevent", "pidl" ] +defaulttasks = [ "samba", "samba-ctdb", "samba-libs", "ldb", "tdb", "ntdb", "talloc", "replace", "tevent", "pidl" ] tasks = { - "samba3" : [ ("autogen", "./autogen.sh", "text/plain"), - ("configure", "./configure.developer ${PREFIX}", "text/plain"), - ("make basics", "make basics", "text/plain"), - # we split 'make -j 4', 'make bin/smbtorture' and 'make -j 4 everything' - # because it makes it much easier to find errors. - ("make", "make -j 4", "text/plain"), # don't use too many processes - ("make bin/smbtorture", "make bin/smbtorture", "text/plain"), - ("make everything", "make -j 4 everything", "text/plain"), - ("install", "make install", "text/plain"), - ("test", "make test FAIL_IMMEDIATELY=1", "text/plain"), - ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"), - ("clean", "make clean", "text/plain") ], - - "samba3-ctdb" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"), - ("autogen", "./autogen.sh", "text/plain"), - ("configure", "./configure.developer ${PREFIX} --with-cluster-support --with-ctdb=../ctdb", "text/plain"), - ("make basics", "make basics", "text/plain"), - ("make", "make all", "text/plain"), # don't use too many processes - ("check", "LD_LIBRARY_PATH=./bin ./bin/smbd -b | grep CLUSTER_SUPPORT", "text/plain"), - ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"), - ("clean", "make clean", "text/plain") ], - # We have 'test' before 'install' because, 'test' should work without 'install' "samba" : [ ("configure", "./configure.developer ${PREFIX} --with-selftest-prefix=./bin/ab", "text/plain"), ("make", "make -j", "text/plain"), |