summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lat9nq2020-12-10 03:34:16 -0500
committerGravatar lat9nq2020-12-10 03:34:16 -0500
commit3802474483cf364281fdcdfbde0c83bffb0e39dc (patch)
tree2d446fdf1e3d6ec56174fae4c89fbcab1d2de565
parentMerge pull request #5179 from ReinUsesLisp/fs-path (diff)
downloadyuzu-3802474483cf364281fdcdfbde0c83bffb0e39dc.tar.gz
yuzu-3802474483cf364281fdcdfbde0c83bffb0e39dc.tar.xz
yuzu-3802474483cf364281fdcdfbde0c83bffb0e39dc.zip
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.sh2
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 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2 2
3mkdir -p "$HOME/.ccache" 3mkdir -p "$HOME/.ccache"
4docker 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 4docker 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