File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export CCACHE_DIR=$HOME/.ccache
115115export CCACHE_COMPRESS=true
116116export CCACHE_COMPRESSLEVEL=9
117117# cache size should be large enough for a full build
118- export CCACHE_MAXSIZE=500M
118+ export CCACHE_MAXSIZE=800M
119119export CCACHE_CPP2=true
120120
121121# periodically check to see if caches are old and purge them if so
@@ -156,8 +156,8 @@ time make -j$(($NPROCS - 1))
156156
157157ccache -s
158158# ## incrementally purge old content from cargo source cache and target directory
159- cargo cache trim --limit 100M
160- cargo sweep --maxsize 500MB
159+ # cargo cache trim --limit 100M # cargo now manages its cache itself
160+ cargo sweep --maxsize 800MB
161161
162162if [ $WITH_TESTS -eq 0 ] ; then
163163 echo " Build done, skipping tests"
Original file line number Diff line number Diff line change @@ -89,5 +89,5 @@ for i in $RUN_PARTITIONS; do
8989 cat $TEST_PARTITIONS_DIR /test-partition-$i .txt >> $TESTS
9090done
9191
92- cat $TESTS | parallel -j $nparts -n $BATCHSIZE --line-buffer --tag-string ' {%}' --progress -- halt-on-error 2 runpart ' {%}' " {}"
92+ cat $TESTS | parallel -j $nparts -n $BATCHSIZE --line-buffer --tag-string ' {%}' --halt-on-error 2 runpart ' {%}' " {}"
9393
You can’t perform that action at this time.
0 commit comments