Revert "ci/mingw: don't run test on 32-bit binary"

Support for 32-bit binaries were restored.

See:
https://github.com/actions/runner-images/issues/9977
https://bugs.launchpad.net/ubuntu/+source/linux-signed-azure/+bug/2071445
https://launchpad.net/ubuntu/+source/linux-azure/6.8.0-1012.14

This reverts commit f47cbcd439.
This commit is contained in:
Kacper Michajłow 2024-08-14 17:47:37 +02:00
parent 08935d5d21
commit 3cc3c9ced3
2 changed files with 5 additions and 14 deletions

View File

@ -36,14 +36,14 @@ jobs:
CCACHE_BASEDIR: ${{ github.workspace }}
CCACHE_DIR: ${{ github.workspace }}/.ccache
CCACHE_MAXSIZE: 500M
WINE: ${{ matrix.wine }}
strategy:
fail-fast: false
matrix:
include:
- target: i686-w64-mingw32
wine: wine32
- target: x86_64-w64-mingw32
wine: wine
wine: wine64
steps:
- uses: actions/checkout@v4
@ -58,18 +58,11 @@ jobs:
key: ${{ matrix.target }}-${{ steps.get_time.outputs.timestamp }}
restore-keys: ${{ matrix.target }}-
# For LuaJIT build
- name: Enable multilib
if: ${{ matrix.target == 'i686-w64-mingw32' }}
- name: Install dependencies
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ccache g++-mingw-w64 meson nasm ninja-build pkg-config ${{ matrix.wine }}
sudo apt-get install -y ccache g++-mingw-w64 gcc-multilib meson nasm ninja-build pkg-config ${{ matrix.wine }}
- name: Install Meson Wraps
run: |
@ -95,14 +88,12 @@ jobs:
cat ./mingw_build/meson-logs/meson-log.txt
- name: Functional test
if: ${{ matrix.wine }}
run: |
cd artifact && wine ./mpv.com -v --no-config
env:
WINEDEBUG: '+loaddll'
- name: Run meson tests
if: ${{ matrix.wine }}
id: tests
run: |
meson test -C mingw_build

View File

@ -47,7 +47,7 @@ pkg-config = 'pkg-config'
windres = '${TARGET}-windres'
dlltool = '${TARGET}-dlltool'
nasm = 'nasm'
exe_wrapper = '${WINE}'
exe_wrapper = 'wine'
[host_machine]
system = 'windows'
cpu_family = '${fam}'