From 07dfc18cc0bad88a125bc3792d24389c781b188d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 31 Jan 2021 00:09:48 +0100 Subject: [PATCH] Disable wxWebView in ASAN CI build Running wxWebView tests with ASAN results in "ASan runtime does not come first in initial library list" warnings and doesn't work currently, so disable wxWebView in this build for now to have a chance of passing the tests. It would be better to actually fix this, of course, but this will have to wait until later. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23027117c8..66bc2ec0a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: skip_samples: true - name: Ubuntu 20.04 wxGTK with ASAN runner: ubuntu-20.04 - configure_flags: --disable-compat30 --disable-sys-libs --with-libcurl + configure_flags: --disable-compat30 --disable-sys-libs --with-libcurl --disable-webview skip_samples: true use_asan: true use_xvfb: true