58d1a26b1a7a3c7de94c37e373b058ceb9559606 jcasper Tue Apr 29 11:28:31 2025 -0700 Can't do beta build in parallel yet - 40 was too much, but also metaDb makefiles in trackDb need changes first. No ticket diff --git src/utils/qa/weeklybld/makeStrictBeta.csh src/utils/qa/weeklybld/makeStrictBeta.csh index 0172f3240d8..55fda95e792 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 -O -j 40 beta >& make.strict.log +#make -O -j 5 beta >& make.strict.log # gotta fix the metaDb makefiles in trackDb first +make strict >& 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