summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-02-10 22:08:58 -0500
committerAndrew Gallant <jamslam@gmail.com>2018-02-10 22:28:12 -0500
commitc4a5bc06c5e445015a422398cfb69a34815390d4 (patch)
tree8b7edfbd5dc73118c14e886696a6a9f3db553a68
parent96ee4482cde73eccf02db8d857c8cd2306e5a6fa (diff)
ci: remove `cargo clean`
We aren't using Travis' Cargo cache any more (because it actually seems to slow down builds), so there's no reason to clean out old build outputs. Also, even if we were using the Cargo cache, our approach to finding the correct Cargo OUT_DIR has become more robust, so we still wouldn't need to remove the old build outputs.
-rwxr-xr-xci/script.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/ci/script.sh b/ci/script.sh
index c0227c56..4e7feaa4 100755
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -7,9 +7,6 @@ set -ex
. "$(dirname $0)/utils.sh"
main() {
- # Travis sometimes caches the target directory, which makes testing the
- # output of cargo a little trickier. So just wipe it.
- cargo clean
# Test a normal debug build.
cargo build --target "$TARGET" --verbose --all