Updated TestingBuilds (markdown)
authorTodd Lyons <tlyons@ivenue.com>
Tue, 3 Jun 2014 12:02:12 +0000 (05:02 -0700)
committerTodd Lyons <tlyons@ivenue.com>
Tue, 3 Jun 2014 12:02:12 +0000 (05:02 -0700)
TestingBuilds.md

index d8052071158bc9274fa682a0682b94e9c9d78267..855bb1690ca932743c17cfc52ab6bd8991e4f3d6 100644 (file)
@@ -45,15 +45,15 @@ In each of the following sample command lines, remember that `--test` will force
 4. Debug mode, only run configure and make if there is a new commit, submit results to server:
 `./run_build.pl --only-steps configure,make --verbose=2`
 
-5. Run all steps, configured to also do make_test, but limit the range of tests from 1 to 9:
+5. Run all steps, only if there is a new commit, configured to also do make_test, but limit the range of tests from 1 to 9:
 `./run_build.pl --override range_test_num='1 9'`
 
-6. Just build docs, don't submit results:
-`./run_build.pl --force --only-steps=make-doc --nosend`
+6. Just build docs, don't submit results (configure builds the *Local/Makefile*, which is required for doc building) :
+`./run_build.pl --force --only-steps=configure,make-doc --nosend`
 
 7. Just build docs, equivalent command:
-`./run_build.pl --test --only-steps=make-doc`
+`./run_build.pl --test --only-steps=configure,make-doc`
 
-8. Just build docs, but allow it to submit results:
-`./run_build.pl --force --only-steps=make-doc`
+8. Just build docs, but allow it to submit results (not advised since you aren't building the actual binary) :
+`./run_build.pl --force --only-steps=configure,make-doc`