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.sh44
1 files changed, 42 insertions, 2 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh
index e0c018cfd..30391f6ad 100755
--- a/.ci/scripts/linux/docker.sh
+++ b/.ci/scripts/linux/docker.sh
@@ -1,14 +1,54 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2 2
3# Exit on error, rather than continuing with the rest of the script.
4set -e
5
3cd /yuzu 6cd /yuzu
4 7
5ccache -s 8ccache -s
6 9
7mkdir build || true && cd build 10mkdir build || true && cd build
8cmake .. -G Ninja -DDISPLAY_VERSION=$1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON 11cmake .. -DDISPLAY_VERSION=$1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -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"
9 12
10ninja 13make -j$(nproc)
11 14
12ccache -s 15ccache -s
13 16
14ctest -VV -C Release 17ctest -VV -C Release
18
19make install DESTDIR=AppDir
20rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester
21
22# Download tools needed to build an AppImage
23wget -nc https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
24wget -nc https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage
25wget -nc https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
26wget -nc https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/AppRun-patched-x86_64
27wget -nc https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/exec-x86_64.so
28# Set executable bit
29chmod 755 \
30 appimagetool-x86_64.AppImage \
31 AppRun-patched-x86_64 \
32 exec-x86_64.so \
33 linuxdeploy-x86_64.AppImage \
34 linuxdeploy-plugin-qt-x86_64.AppImage
35
36# Workaround for https://github.com/AppImage/AppImageKit/issues/828
37export APPIMAGE_EXTRACT_AND_RUN=1
38
39mkdir -p AppDir/usr/optional
40mkdir -p AppDir/usr/optional/libstdc++
41mkdir -p AppDir/usr/optional/libgcc_s
42
43# Deploy yuzu's needed dependencies
44./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt
45
46# Workaround for building yuzu with GCC 10 but also trying to distribute it to Ubuntu 18.04 et al.
47# See https://github.com/darealshinji/AppImageKit-checkrt
48cp exec-x86_64.so AppDir/usr/optional/exec.so
49cp AppRun-patched-x86_64 AppDir/AppRun
50cp --dereference /usr/lib/x86_64-linux-gnu/libstdc++.so.6 AppDir/usr/optional/libstdc++/libstdc++.so.6
51cp --dereference /lib/x86_64-linux-gnu/libgcc_s.so.1 AppDir/usr/optional/libgcc_s/libgcc_s.so.1
52
53# Build the AppImage
54./appimagetool-x86_64.AppImage AppDir