2020-12-29 23:15:51 +04:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
BRANCH=`echo ${GITHUB_REF##*/}`
|
2021-07-11 03:12:36 +04:00
|
|
|
build_date=$(date +%F -r .)
|
2020-12-29 23:15:51 +04:00
|
|
|
|
2020-12-30 02:52:33 +04:00
|
|
|
ver=$(cat /yuzu/README.md | grep -o 'early-access [[:digit:]]*' | cut -c 14-17)
|
2020-12-30 00:23:31 +04:00
|
|
|
title="yuzu Early Access $ver"
|
2020-12-29 23:15:51 +04:00
|
|
|
|
2020-12-29 23:39:55 +04:00
|
|
|
yuzupatch=( $(ls -d patches/* ) )
|
2020-12-30 00:14:44 +04:00
|
|
|
for i in "${yuzupatch[@]}"; do patch -p1 < "$i"; done
|
2020-12-29 23:15:51 +04:00
|
|
|
|
2021-05-11 04:43:31 +04:00
|
|
|
find . -name "CMakeLists.txt" ! -path "*/externals/*" -exec sed -i 's/^.*-Werror$/-W/g' {} +
|
|
|
|
find . -name "CMakeLists.txt" ! -path "*/externals/*" -exec sed -i 's/^.*-Werror=.*)$/ )/g' {} +
|
|
|
|
find . -name "CMakeLists.txt" ! -path "*/externals/*" -exec sed -i 's/^.*-Werror=.*$/ /g' {} +
|
|
|
|
find . -name "CMakeLists.txt" ! -path "*/externals/*" -exec sed -i 's/-Werror/-W/g' {} +
|
2020-12-31 00:25:13 +04:00
|
|
|
|
2021-12-08 18:19:15 +04:00
|
|
|
# Add cache if does not exist
|
|
|
|
if [[ ! -e ~/.ccache ]]; then
|
|
|
|
mkdir ~/.ccache
|
|
|
|
fi
|
|
|
|
CACHEDIR=~/.ccache
|
|
|
|
ls -al $CACHEDIR
|
2021-12-08 17:57:24 +04:00
|
|
|
###############################################
|
|
|
|
# Install SDL
|
|
|
|
SDL2VER=2.0.18
|
|
|
|
#SDL2
|
|
|
|
cd $CACHEDIR
|
|
|
|
if [[ ! -e SDL2-${SDL2VER} ]]; then
|
|
|
|
curl -sLO https://libsdl.org/release/SDL2-${SDL2VER}.tar.gz
|
|
|
|
tar -xzf SDL2-${SDL2VER}.tar.gz
|
|
|
|
cd SDL2-${SDL2VER}
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make && cd ../
|
|
|
|
rm SDL2-${SDL2VER}.tar.gz
|
|
|
|
fi
|
2021-12-08 18:19:15 +04:00
|
|
|
make -C SDL2-${SDL2VER} install
|
2021-12-08 17:57:24 +04:00
|
|
|
sdl2-config --version
|
|
|
|
cd /yuzu
|
|
|
|
###############################################
|
|
|
|
|
2021-10-02 21:06:59 +04:00
|
|
|
pip3 install conan --upgrade
|
|
|
|
|
2020-12-29 23:15:51 +04:00
|
|
|
mkdir build && cd build
|
|
|
|
|
2021-02-15 09:52:39 +04:00
|
|
|
cmake .. \
|
2021-05-06 18:26:03 +04:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2021-02-15 23:10:14 +04:00
|
|
|
-DCMAKE_C_COMPILER=/usr/lib/ccache/gcc \
|
2021-02-15 09:52:39 +04:00
|
|
|
-DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ \
|
|
|
|
-DTITLE_BAR_FORMAT_IDLE="$title" \
|
|
|
|
-DTITLE_BAR_FORMAT_RUNNING="$title | {3}" \
|
|
|
|
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
|
|
|
|
-DGIT_BRANCH="HEAD" \
|
|
|
|
-DGIT_DESC="$msvc" \
|
|
|
|
-DUSE_DISCORD_PRESENCE=ON \
|
|
|
|
-DENABLE_QT_TRANSLATION=ON \
|
|
|
|
-DBUILD_DATE="$build_date" \
|
|
|
|
-DYUZU_USE_QT_WEB_ENGINE=OFF \
|
2021-12-08 18:19:15 +04:00
|
|
|
-DYUZU_USE_EXTERNAL_SDL2=OFF \
|
2021-02-15 09:52:39 +04:00
|
|
|
-G Ninja
|
2020-12-30 00:23:31 +04:00
|
|
|
|
|
|
|
ninja
|
|
|
|
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
curl -sLO "https://raw.githubusercontent.com/$GITHUB_REPOSITORY/$BRANCH/.github/workflows/appimage.sh"
|
|
|
|
chmod a+x appimage.sh
|
|
|
|
./appimage.sh
|