summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-08-22 14:19:55 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-08-22 14:19:55 +0200
commit0dda1d41bed8086fe31b542af88667f15ae4b275 (patch)
tree2c92bb1d93e38536bcd9781a06c5ec0c42393353
parente8cc163d84f058d7a918a66c9ac4c54f8137111f (diff)
downloadqutebrowser-0dda1d41bed8086fe31b542af88667f15ae4b275.tar.gz
qutebrowser-0dda1d41bed8086fe31b542af88667f15ae4b275.zip
ci: Fix regex for macOS log
The smoke test runs without debug logging, so the format is different.
-rwxr-xr-xscripts/dev/build_release.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 81aabbdc2..c175c68a7 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -174,8 +174,7 @@ def smoke_test(executable: pathlib.Path, debug: bool) -> None:
'[0-9:]* ERROR: Load error: ERR_FILE_NOT_FOUND',
# macOS 11
- (r'[0-9:]* WARNING: qt-qt\.tlsbackend\.ossl Unknown module:none:0 '
- r'Failed to load libssl/libcrypto\.'),
+ (r'[0-9:]* WARNING: Failed to load libssl/libcrypto\.'),
]
proc = _smoke_test_run(executable)