Update docker.sh
This commit is contained in:
parent
de79c50468
commit
18774015b2
1 changed files with 11 additions and 2 deletions
13
.github/workflows/docker.sh
vendored
13
.github/workflows/docker.sh
vendored
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
BRANCH=`echo ${GITHUB_REF##*/}`
|
BRANCH=`echo ${GITHUB_REF##*/}`
|
||||||
|
|
||||||
title=$(cat /yuzu/readme.md | grep 'early-access [[:digit:]]*' | cut -c 14-17)
|
ver=$(cat /yuzu/README.md | grep 'early-access [[:digit:]]*' | cut -c 14-17)
|
||||||
|
title="yuzu Early Access $ver"
|
||||||
|
|
||||||
|
|
||||||
yuzupatch=( $(ls -d patches/* ) )
|
yuzupatch=( $(ls -d patches/* ) )
|
||||||
|
@ -10,4 +11,12 @@ for i in "${yuzupatch[@]}"; do patch -p1 < "$i"; done
|
||||||
|
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
|
|
||||||
ls .
|
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -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
|
||||||
|
|
||||||
|
ninja
|
||||||
|
|
||||||
|
|
||||||
|
cd /tmp
|
||||||
|
curl -sLO "https://raw.githubusercontent.com/$GITHUB_REPOSITORY/$BRANCH/.github/workflows/appimage.sh"
|
||||||
|
chmod a+x appimage.sh
|
||||||
|
./appimage.sh
|
||||||
|
|
Loading…
Reference in a new issue