Skip to content

Commit 4fe3171

Browse files
committed
tweak
1 parent 3dd671a commit 4fe3171

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci-build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export CCACHE_DIR=$HOME/.ccache
115115
export CCACHE_COMPRESS=true
116116
export CCACHE_COMPRESSLEVEL=9
117117
# cache size should be large enough for a full build
118-
export CCACHE_MAXSIZE=500M
118+
export CCACHE_MAXSIZE=800M
119119
export 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

157157
ccache -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

162162
if [ $WITH_TESTS -eq 0 ] ; then
163163
echo "Build done, skipping tests"

src/test/selftest-parallel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ for i in $RUN_PARTITIONS; do
8989
cat $TEST_PARTITIONS_DIR/test-partition-$i.txt >> $TESTS
9090
done
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

0 commit comments

Comments
 (0)