forked from zaclys/searxng
[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
This commit is contained in:
parent
9b48ae47ec
commit
9e32fb27e7
|
@ -5,7 +5,9 @@ language: python
|
|||
cache:
|
||||
- directories:
|
||||
- $HOME/.cache/pip
|
||||
|
||||
before_cache:
|
||||
- sudo chown -R travis:travis $HOME/.cache/pip
|
||||
- rm -f $HOME/.cache/pip/log/debug.log
|
||||
addons:
|
||||
firefox: "latest"
|
||||
|
||||
|
|
Loading…
Reference in New Issue