From c90f5c31784499a7d7d11198009593f3ef4beec4 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 19 Aug 2021 16:32:56 +0100 Subject: [PATCH] Use WINECC env var in CI Signed-off-by: falkTX --- .github/workflows/wine.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wine.yml b/.github/workflows/wine.yml index 18446bd13..3ef85d64d 100644 --- a/.github/workflows/wine.yml +++ b/.github/workflows/wine.yml @@ -15,6 +15,7 @@ jobs: ubuntu-18_04: runs-on: ubuntu-18.04 env: + WINECC: winegcc-stable WINEDEBUG: "-all" steps: - uses: actions/checkout@v2 @@ -22,7 +23,7 @@ jobs: run: | sudo dpkg --add-architecture i386 sudo apt-get update -qq - sudo apt-get install -yq g++-multilib pkg-config wine-stable wine64-development-tools + sudo apt-get install -yq g++-multilib pkg-config wine-stable wine64-tools sudo apt-get install -yq binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 g++-mingw-w64-i686 g++-mingw-w64-x86-64 mingw-w64 - name: make wine32 run: make wine32 -j $(nproc) @@ -40,6 +41,7 @@ jobs: ubuntu-20_04: runs-on: ubuntu-20.04 env: + WINECC: winegcc-stable WINEDEBUG: "-all" steps: - uses: actions/checkout@v2 @@ -47,7 +49,7 @@ jobs: run: | sudo dpkg --add-architecture i386 sudo apt-get update -qq - sudo apt-get install -yq g++-multilib pkg-config wine-stable wine64-development-tools + sudo apt-get install -yq g++-multilib pkg-config wine-stable wine64-tools sudo apt-get install -yq binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 g++-mingw-w64-i686 g++-mingw-w64-x86-64 mingw-w64 - name: make wine32 run: make wine32 -j $(nproc)