Browse Source

[fix] travis: Permission denied: '/home/travis/.cache/pip/...'

Fix "Permission denied: '/home/travis/.cache/" errors from travis build [1].

Change owner https://docs.travis-ci.com/user/caching/#caches-and-read-permissions
and remove old log in the *before_caching* phase:

  https://docs.travis-ci.com/user/caching/#before_cache-phase

About pip cache see: https://docs.travis-ci.com/user/caching/#pip-cache

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>

[1] https://travis-ci.org/github/asciimoo/searx/jobs/669664131#L220
Markus Heiser 5 years ago
parent
commit
9e32fb27e7
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .travis.yml

+ 3 - 1
.travis.yml

@@ -5,7 +5,9 @@ language: python
 cache:
 cache:
   - directories:
   - directories:
     - $HOME/.cache/pip
     - $HOME/.cache/pip
-
+before_cache:
+    - sudo chown -R travis:travis $HOME/.cache/pip
+    - rm -f $HOME/.cache/pip/log/debug.log
 addons:
 addons:
   firefox: "latest"
   firefox: "latest"