From e956e7b8c79afe5f034ea9b9cdd04120c6eed85a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 15 Jun 2022 17:36:41 +0200 Subject: [PATCH] build-release: Ignore new macOS warnings temporarily See #7255 and #7256 --- scripts/dev/build_release.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index b50b7bdc5..4eb9ac580 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -177,6 +177,12 @@ def smoke_test(executable: pathlib.Path, debug: bool) -> None: # macOS 11 (r'[0-9:]* WARNING: Failed to load libssl/libcrypto\.'), + + # FIXME:qt6 Qt 6.3 on macOS + r'[0-9:]* WARNING: Incompatible version of OpenSSL', + r'[0-9:]* WARNING: Qt WebEngine resources not found at .*', + (r'[0-9:]* WARNING: Installed Qt WebEngine locales directory not found at ' + r'location /qtwebengine_locales\. Trying application directory\.\.\.'), ] proc = _smoke_test_run(executable)