Skip to content

Commit

Permalink
Add staging-tkg to WoW64 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kron4ek committed Dec 15, 2024
1 parent 90a837e commit 56a4c85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/wine-exp-wow64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
export EXPERIMENTAL_WOW64="true"
WINE_BRANCH=vanilla ./build_wine.sh
WINE_BRANCH=staging ./build_wine.sh
WINE_BRANCH=staging-tkg ./build_wine.sh
sha256sum *.tar.xz
- uses: actions/upload-artifact@v3
with:
Expand Down
10 changes: 7 additions & 3 deletions build_wine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,14 @@ if [ -n "${CUSTOM_SRC_PATH}" ]; then
WINE_VERSION="$(cat wine/VERSION | tail -c +14)"
BUILD_NAME="${WINE_VERSION}"-custom
elif [ "$WINE_BRANCH" = "staging-tkg" ] || [ "$WINE_BRANCH" = "staging-tkg-ntsync" ]; then
if [ "$WINE_BRANCH" = "staging-tkg" ]; then
git clone https://github.com/Kron4ek/wine-tkg wine
if [ "${EXPERIMENTAL_WOW64}" = "true" ]; then
git clone https://github.com/Kron4ek/wine-tkg wine -b wow64
else
git clone https://github.com/Kron4ek/wine-tkg wine -b ntsync
if [ "$WINE_BRANCH" = "staging-tkg" ]; then
git clone https://github.com/Kron4ek/wine-tkg wine
else
git clone https://github.com/Kron4ek/wine-tkg wine -b ntsync
fi
fi

WINE_VERSION="$(cat wine/VERSION | tail -c +14)"
Expand Down

0 comments on commit 56a4c85

Please sign in to comment.