3e26b51b24970c933f50f13304ae5bb1ca5a8059
jcasper
  Tue Apr 8 13:29:26 2025 -0700
Trying a parallel version of the final build tdb make to speed things up, refs #35489

diff --git src/utils/qa/weeklybld/makeStrictBeta.csh src/utils/qa/weeklybld/makeStrictBeta.csh
index ecaa9c2a9b8..0172f3240d8 100755
--- src/utils/qa/weeklybld/makeStrictBeta.csh
+++ src/utils/qa/weeklybld/makeStrictBeta.csh
@@ -1,35 +1,35 @@
 #!/bin/tcsh
 
 cd $BUILDDIR
 set dir = "v"$BRANCHNN"_branch"
 cd $dir
 
 cd kent
 pwd
 # the makefile now does zoo automatically now when you call it
 echo "trackDb Make strict. [${0}: `date`]"
 cd $BUILDDIR/$dir/kent/src/hg/makeDb/trackDb
 #old method: make strict >& make.strict.log
-make beta >& make.strict.log
+make -O -j 40 beta >& make.strict.log
 /bin/egrep -i "html missing" make.strict.log > warning.txt
 /bin/egrep -iv "html missing" make.strict.log > make.strict.log2
 mv make.strict.log2 make.strict.log
 set res = `/bin/egrep -i "error|warn" make.strict.log | grep -v ignored`
 set wc = `echo "$res" | wc -w` 
 if ( "$wc" != "0" ) then
    echo "trackDb strict errs found:"
    echo "$res"
    tail make.strict.log
    exit 1
 endif
 
 set wc = `cat warning.txt | wc -w`
 if ( "$wc" != "0" ) then
     echo "trackDb strict html non-fatal errs found:"
     cat warning.txt
     cat warning.txt | mail -s "v$BRANCHNN missing html error found by trackDb make strict" ${BUILDMEISTEREMAIL} browser-qa@soe.ucsc.edu
 endif
 rm warning.txt
 
 echo "trackDb Make strict done on Beta [${0}: `date`]"
 exit 0