From d7244d2afd871a32e3edb1def3e74a51762b5530 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 11 Jun 2024 12:09:20 -0700 Subject: [PATCH] FIXUP winetests --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70cd186..b650862 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,13 +77,13 @@ jobs: #!/bin/bash set -o pipefail # Show all errors except for the ones about querying the display - WINEDEBUG=-all,err+all,-explorer,-rpc wine "\$@" |& dos2unix + WINEDEBUG=-all,err+all,-explorer,-rpc,-winediag,-systray wine "\$@" |& dos2unix EOF chmod 755 wine-wrapper # Run wine once to set it up, which displays some logs that would mess up tests WINEDEBUG=-all wine cmd /c exit - name: 'Compile with mingw32-posix' - run: make clean && make linux LINUX_CC=x86_64-w64-mingw32-gcc-13-posix + run: make clean && make linux LINUX_CC=x86_64-w64-mingw32-gcc-13-posix && ls -ltr && mv fvcbm fvcbm.exe - name: 'Run tests with mingw32-posix+wine' run: make test TESTWRAPPER=./wine-wrapper - name: 'Compile with mingw32'