Browse Source

Use WINECC env var in CI

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.0
falkTX 3 years ago
parent
commit
c90f5c3178
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      .github/workflows/wine.yml

+ 4
- 2
.github/workflows/wine.yml View File

@@ -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)


Loading…
Cancel
Save