2020-12-29 19:15:51 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
BRANCH=`echo ${GITHUB_REF##*/}`
|
|
|
|
|
2020-12-29 22:52:33 +00:00
|
|
|
ver=$(cat /yuzu/README.md | grep -o 'early-access [[:digit:]]*' | cut -c 14-17)
|
2020-12-29 20:23:31 +00:00
|
|
|
title="yuzu Early Access $ver"
|
2020-12-29 19:15:51 +00:00
|
|
|
|
2021-02-16 01:55:43 +00:00
|
|
|
ln -s /home/yuzu/.conan /root
|
2020-12-29 19:15:51 +00:00
|
|
|
|
2020-12-29 19:39:55 +00:00
|
|
|
yuzupatch=( $(ls -d patches/* ) )
|
2020-12-29 20:14:44 +00:00
|
|
|
for i in "${yuzupatch[@]}"; do patch -p1 < "$i"; done
|
2020-12-29 19:15:51 +00:00
|
|
|
|
2020-12-30 20:25:13 +00:00
|
|
|
find . -name "CMakeLists.txt" -exec sed -i 's/^.*-Werror$/-W/g' {} +
|
|
|
|
find . -name "CMakeLists.txt" -exec sed -i 's/^.*-Werror=.*)$/ )/g' {} +
|
|
|
|
find . -name "CMakeLists.txt" -exec sed -i 's/^.*-Werror=.*$/ /g' {} +
|
|
|
|
find . -name "CMakeLists.txt" -exec sed -i 's/-Werror/-W/g' {} +
|
|
|
|
|
2020-12-29 19:15:51 +00:00
|
|
|
mkdir build && cd build
|
|
|
|
|
2021-02-15 05:52:39 +00:00
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2021-02-15 19:10:14 +00:00
|
|
|
-DCMAKE_C_COMPILER=/usr/lib/ccache/gcc \
|
2021-02-15 05:52:39 +00: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 \
|
|
|
|
-G Ninja
|
2020-12-29 20:23:31 +00:00
|
|
|
|
|
|
|
ninja
|
|
|
|
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
curl -sLO "https://raw.githubusercontent.com/$GITHUB_REPOSITORY/$BRANCH/.github/workflows/appimage.sh"
|
|
|
|
chmod a+x appimage.sh
|
|
|
|
./appimage.sh
|