diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2020-12-10 03:34:16 -0500 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2020-12-10 03:34:16 -0500 |
commit | 3802474483cf364281fdcdfbde0c83bffb0e39dc (patch) | |
tree | 2d446fdf1e3d6ec56174fae4c89fbcab1d2de565 | |
parent | 4e94d0d53af2cdb7b03ef9de23cc29f3565df97a (diff) |
travis/linux: Use correct ccache directory
Changes the bound ccache directory to `/home/yuzu/.ccache` instead of
`/root/.ccache`, since the `/root` directory is not accessible by the
`yuzu` user in the guest container.
-rwxr-xr-x | .travis/linux/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/linux/build.sh b/.travis/linux/build.sh index 3929f97fc..0c7fb8c9d 100755 --- a/.travis/linux/build.sh +++ b/.travis/linux/build.sh @@ -1,4 +1,4 @@ #!/bin/bash -ex mkdir -p "$HOME/.ccache" -docker run -e ENABLE_COMPATIBILITY_REPORTING --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.travis/linux/docker.sh +docker run -e ENABLE_COMPATIBILITY_REPORTING --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/home/yuzu/.ccache yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.travis/linux/docker.sh |