Skip to content

Commit

Permalink
autobuild: enabled samba3-waf build
Browse files Browse the repository at this point in the history
this is just a build check for now. See the mailing list discussion.

Autobuild-User: Andrew Tridgell <[email protected]>
Autobuild-Date: Tue Mar  1 06:22:07 CET 2011 on sn-devel-104
  • Loading branch information
Andrew Tridgell committed Mar 1, 2011
1 parent 5f5ca91 commit dbf6b48
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion script/autobuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

builddirs = {
"samba3" : "source3",
"samba3-waf": "source3",
"samba4" : ".",
"ldb" : "source4/lib/ldb",
"tdb" : "lib/tdb",
Expand All @@ -30,7 +31,7 @@
"retry" : "."
}

defaulttasks = [ "samba3", "samba4", "ldb", "tdb", "talloc", "replace", "tevent", "pidl" ]
defaulttasks = [ "samba3", "samba3-waf", "samba4", "ldb", "tdb", "talloc", "replace", "tevent", "pidl" ]

tasks = {
"samba3" : [ ("autogen", "./autogen.sh", "text/plain"),
Expand All @@ -42,6 +43,12 @@
("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
("clean", "make clean", "text/plain") ],

"samba3-waf" : [ ("autogen", "./autogen-waf.sh", "text/plain"),
("configure", "./configure.developer ${PREFIX}", "text/plain"),
("make", "make -j", "text/plain"),
("install", "make install", "text/plain"),
("clean", "make clean", "text/plain") ],

# We have 'test' before 'install' because, 'test' should work without 'install'
"samba4" : [ ("configure", "./configure.developer ${PREFIX}", "text/plain"),
("make", "make -j", "text/plain"),
Expand Down

0 comments on commit dbf6b48

Please sign in to comment.