Skip to content

Commit 08e2e68

Browse files
committed
Auto merge of #1843 - jtgeibel:travis-cache-fixes, r=jtgeibel
Travis cache fixes Build times have regressed and we are spending a lot of time doing caching stuff (and downloading/uploading 8GB of compressed data). By manually wiping out the cache, stable and beta build times should align more closely with nightly (which is cleaned on every new nightly release). This PR also fixes the list of pruned binaries: * Remove update-downloads * Add enqueue-job * Sort alphabetically for easier comparison against `ls src/bin`
2 parents b834939 + e9f4fc6 commit 08e2e68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/ci/cargo-clean-on-new-rustc-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
manual_stamp_file=target/ci_manual_stamp
6-
manual_stamp=6 # Change this to force a clean build on CI
6+
manual_stamp=7 # Change this to force a clean build on CI
77

88
if [ -f $manual_stamp_file ]; then
99
if echo "$manual_stamp" | cmp -s $manual_stamp_file -; then

script/ci/prune-cache.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ du -hs target/debug
77

88
crate_name="cargo-registry"
99
test_name="all"
10-
bin_names="delete-crate delete-version populate render-readmes server test-pagerduty transfer-crates update-downloads background-worker monitor"
10+
bin_names="background-worker delete-crate delete-version enqueue-job monitor populate render-readmes server test-pagerduty transfer-crates"
1111

1212
normalized_crate_name=${crate_name//-/_}
1313
rm -v target/debug/$normalized_crate_name-*

0 commit comments

Comments
 (0)