lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master ce0787c2 4/4: Avoid useless warnings about mi


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master ce0787c2 4/4: Avoid useless warnings about missing wine32 in 64-bit build
Date: Sat, 12 Feb 2022 19:54:44 -0500 (EST)

branch: master
commit ce0787c2beb948f9da92e644261dc3db68c141e5
Author: Vadim Zeitlin <vadim@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Avoid useless warnings about missing wine32 in 64-bit build
    
    Set WINEDEBUG to fool Debian wine script into thinking that errors are
    disabled and so suppress warning about missing wine32 that we don't care
    about, but actually still enable errors and fixme logs, as is the case
    by default if WINEDEBUG is not set at all.
---
 .github/workflows/ci.yml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c353a7aa..e386d484 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -91,6 +91,13 @@ jobs:
 
               x86_64-*)
                 packages="$packages g++-mingw-w64-x86-64 wine wine64"
+
+                # Set WINEDEBUG to avoid annoying warnings about wine32 being
+                # missing: this is not a problem in our case, we want to only
+                # run 64-bit programs in this build, so set WINEDEBUG to a
+                # value equivalent to its default/unset value but recognized
+                # as disabling error output by Debian /usr/bin/wine script.
+                export 'WINEDEBUG=-all,err+all,fixme+all' >> $GITHUB_ENV
                 ;;
 
               *)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]