]> Untitled Git - lemmy.git/commitdiff
Trying out new cargo cache. #397
authorDessalines <tyhou13@gmx.com>
Fri, 3 Jan 2020 17:09:06 +0000 (12:09 -0500)
committerDessalines <tyhou13@gmx.com>
Fri, 3 Jan 2020 17:09:06 +0000 (12:09 -0500)
.travis.yml

index 0f180dba5441f17defb3620cd779b507f6e98c81..af69ec8a63cb7b46f10b9d277cd45dc39a7906e8 100644 (file)
@@ -5,11 +5,15 @@ matrix:
   allow_failures:
     - rust: nightly
   fast_finish: true
-cache:
-  directories:
-    - /home/travis/.cargo
+cache: cargo
 before_cache:
-  - rm -rf /home/travis/.cargo/registry
+  - rm -rfv target/debug/incremental/lemmy-*
+  - rm -rfv target/debug/.fingerprint/lemmy-*
+  - rm -rfv target/debug/build/lemmy-*
+  - rm -rfv target/debug/deps/liblemmy-*
+  - rm -rfv target/debug/deps/lemmy-*
+  - rm -rfv target/debug/{lemmy,liblemmy}.d
+  - cargo clean -p lemmy
 before_script:
   - psql -c "create user lemmy with password 'password' superuser;" -U postgres
   - psql -c 'create database lemmy with owner lemmy;' -U postgres