summaryrefslogtreecommitdiff
path: root/.ci/scripts/linux
diff options
context:
space:
mode:
authorGravatar bunnei2021-01-05 21:34:08 -0800
committerGravatar GitHub2021-01-05 21:34:08 -0800
commite112d0a52fc0660a5faded0f438c2cde325e608c (patch)
tree6fecd1f7b67ebd2bf57864dfcc67f99c333616ba /.ci/scripts/linux
parentMerge pull request #5293 from ReinUsesLisp/return-values (diff)
parentci: Build an AppImage (diff)
downloadyuzu-e112d0a52fc0660a5faded0f438c2cde325e608c.tar.gz
yuzu-e112d0a52fc0660a5faded0f438c2cde325e608c.tar.xz
yuzu-e112d0a52fc0660a5faded0f438c2cde325e608c.zip
Merge pull request #5250 from lat9nq/appimage
ci/linux: Build an AppImage
Diffstat (limited to '.ci/scripts/linux')
-rwxr-xr-x.ci/scripts/linux/docker.sh44
-rw-r--r--.ci/scripts/linux/upload.sh5
2 files changed, 47 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
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh
index fe4e6b2ac..7175e4cb5 100644
--- a/.ci/scripts/linux/upload.sh
+++ b/.ci/scripts/linux/upload.sh
@@ -2,6 +2,8 @@
2 2
3. .ci/scripts/common/pre-upload.sh 3. .ci/scripts/common/pre-upload.sh
4 4
5APPIMAGE_NAME="yuzu-x86_64.AppImage"
6NEW_APPIMAGE_NAME="yuzu-${GITDATE}-${GITREV}-x86_64.AppImage"
5REV_NAME="yuzu-linux-${GITDATE}-${GITREV}" 7REV_NAME="yuzu-linux-${GITDATE}-${GITREV}"
6ARCHIVE_NAME="${REV_NAME}.tar.xz" 8ARCHIVE_NAME="${REV_NAME}.tar.xz"
7COMPRESSION_FLAGS="-cJvf" 9COMPRESSION_FLAGS="-cJvf"
@@ -17,4 +19,7 @@ mkdir "$DIR_NAME"
17cp build/bin/yuzu-cmd "$DIR_NAME" 19cp build/bin/yuzu-cmd "$DIR_NAME"
18cp build/bin/yuzu "$DIR_NAME" 20cp build/bin/yuzu "$DIR_NAME"
19 21
22# Copy the AppImage to the artifacts directory and avoid compressing it
23cp "build/${APPIMAGE_NAME}" "${ARTIFACTS_DIR}/${NEW_APPIMAGE_NAME}"
24
20. .ci/scripts/common/post-upload.sh 25. .ci/scripts/common/post-upload.sh