summaryrefslogtreecommitdiff
path: root/.ci/scripts/linux/docker.sh
diff options
context:
space:
mode:
Diffstat (limited to '.ci/scripts/linux/docker.sh')
-rwxr-xr-x.ci/scripts/linux/docker.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh
index 38b29294c..436155b3d 100755
--- a/.ci/scripts/linux/docker.sh
+++ b/.ci/scripts/linux/docker.sh
@@ -17,15 +17,16 @@ cmake .. \
17 -DENABLE_QT_TRANSLATION=ON \ 17 -DENABLE_QT_TRANSLATION=ON \
18 -DUSE_DISCORD_PRESENCE=ON \ 18 -DUSE_DISCORD_PRESENCE=ON \
19 -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} \ 19 -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} \
20 -DYUZU_USE_BUNDLED_FFMPEG=ON 20 -DYUZU_USE_BUNDLED_FFMPEG=ON \
21 -GNinja
21 22
22make -j$(nproc) 23ninja
23 24
24ccache -s 25ccache -s
25 26
26ctest -VV -C Release 27ctest -VV -C Release
27 28
28make install DESTDIR=AppDir 29DESTDIR="$PWD/AppDir" ninja install
29rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester 30rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester
30 31
31# Download tools needed to build an AppImage 32# Download tools needed to build an AppImage