diff options
author | Frederic L <frederic.laing.development@gmail.com> | 2019-06-20 04:26:12 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2019-06-19 22:26:12 -0400 |
commit | 5cef446f42e698a524c6c3240fedb0031f8e5694 (patch) | |
tree | efefc9c889a14bba9f47e72f1bb83a44f0679e68 /.travis | |
parent | 8893d6361246fc49b83fe7326c78482518520b94 (diff) |
CMake: Get Git submodule dependencies via CMake (#2474)
* CMake: Get Git submodule dependencies via CMake
* CMakeLists: Fixed unintentional line break
* travis: Bring parity between linux-mingw and linux build script
* CMakeLists: Fixed typo in error message
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/linux-mingw/build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis/linux-mingw/build.sh b/.travis/linux-mingw/build.sh index b12d70b12..c32a909d3 100755 --- a/.travis/linux-mingw/build.sh +++ b/.travis/linux-mingw/build.sh @@ -1,3 +1,4 @@ #!/bin/bash -ex -mkdir "$HOME/.ccache" || true -docker run --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-mingw /bin/bash -ex /yuzu/.travis/linux-mingw/docker.sh + +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-mingw /bin/bash /yuzu/.travis/linux-mingw/docker.sh |