Skip to content

Commit

Permalink
script/autobuild.py: split 'samba3' 'make -j 4 everything' into multi…
Browse files Browse the repository at this point in the history
…ple steps

Calling 'waf configure' while compiling .c files makes it very hard to
find compile errors. We do 'make -j 4 bin/smbtorture4' before 'make -j 4 everything'.

metze
  • Loading branch information
metze-samba committed Oct 11, 2011
1 parent 6760011 commit 3c4eb2c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion script/autobuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
"samba3" : [ ("autogen", "./autogen.sh", "text/plain"),
("configure", "./configure.developer ${PREFIX}", "text/plain"),
("make basics", "make basics", "text/plain"),
("make", "make -j 4 everything", "text/plain"), # don't use too many processes
# we split 'make -j 4', 'make bin/smbtorture4' 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/smbtorture4", "make -j 4 bin/smbtorture4", "text/plain"),
("make everything", "make -j 4 everything", "text/plain"),
("install", "make install", "text/plain"),
("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),
("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
Expand Down

0 comments on commit 3c4eb2c

Please sign in to comment.