diff options
author | bunnei <bunneidev@gmail.com> | 2022-07-23 02:54:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-23 02:54:47 +0200 |
commit | 58081a3664e3c069cd4efe5d96502c2fcc831535 (patch) | |
tree | 06ba40b5701eff84160b6a85e8075b7b66b3a08f /.ci/scripts | |
parent | Merge pull request #8598 from Link4565/recv-dontwait (diff) | |
parent | gitmodules: Remove 'externals' from names of submodules (diff) | |
download | yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.gz yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.bz2 yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.lz yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.xz yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.zst yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.zip |
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x | .ci/scripts/clang/docker.sh | 12 | ||||
-rwxr-xr-x | .ci/scripts/windows/docker.sh | 5 |
2 files changed, 12 insertions, 5 deletions
diff --git a/.ci/scripts/clang/docker.sh b/.ci/scripts/clang/docker.sh index 94a9ca0ec..db736f72b 100755 --- a/.ci/scripts/clang/docker.sh +++ b/.ci/scripts/clang/docker.sh @@ -6,7 +6,17 @@ set -e ccache -s mkdir build || true && cd build -cmake .. -GNinja -DDISPLAY_VERSION=$1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/clang -DCMAKE_CXX_COMPILER=/usr/lib/ccache/clang++ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_INSTALL_PREFIX="/usr" +cmake .. \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_CXX_COMPILER=/usr/lib/ccache/clang++ \ + -DCMAKE_C_COMPILER=/usr/lib/ccache/clang \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DDISPLAY_VERSION=$1 \ + -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ + -DENABLE_QT_TRANSLATION=ON \ + -DUSE_DISCORD_PRESENCE=ON \ + -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} \ + -GNinja ninja diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 5bd5f0b6b..9f34530d6 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -6,10 +6,6 @@ set -e ccache -sv -mkdir -p "$HOME/.conan/profiles" -wget -c "https://github.com/yuzu-emu/build-environments/raw/master/linux-mingw/default" -O "$HOME/.conan/profiles/default" -wget -c "https://github.com/yuzu-emu/build-environments/raw/master/linux-mingw/settings.yml" -O "$HOME/.conan/settings.yml" - mkdir -p build && cd build export LDFLAGS="-fuse-ld=lld" # -femulated-tls required due to an incompatibility between GCC and Clang @@ -24,6 +20,7 @@ cmake .. \ -DUSE_CCACHE=ON \ -DYUZU_USE_BUNDLED_SDL2=OFF \ -DYUZU_USE_EXTERNAL_SDL2=OFF \ + -DYUZU_TESTS=OFF \ -GNinja ninja yuzu yuzu-cmd |