Skip to content
Snippets Groups Projects
Unverified Commit 44a2e172 authored by Fijxu's avatar Fijxu
Browse files

fix: Use chmod inside the CCACHE directory

If we need to replace the docker image for any reason, the user will
(probably) be different. This ensures that the CCACHE directory can be
read and writen by any user of the docker image being used in the CI.
parent 90ab1c38
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,7 @@ build-linux: ...@@ -37,6 +37,7 @@ build-linux:
- $CACHE_DIR - $CACHE_DIR
before_script: before_script:
- mkdir -p $CACHE_DIR - mkdir -p $CACHE_DIR
- chmod -R 777 $CACHE_DIR
- ls -la $CACHE_DIR - ls -la $CACHE_DIR
variables: variables:
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: recursive
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment