Skip to content

Commit 0c1cc72

Browse files
committed
Skip optimization in CodeQL build
As far as I can determine from the docs this doesn't change anything about the analysis, and with caching disabled using -O3 is quite time consuming to build.
1 parent 3523ca2 commit 0c1cc72

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/scripts/ci_build.py

+3
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ def sanitize_kv(some_string):
210210
if target in ['docs', 'codeql', 'hybrid-tls13-interop-test', 'limbo']:
211211
test_cmd = None
212212

213+
if target in ['codeql']:
214+
flags += ['--no-optimizations']
215+
213216
if target == 'cross-win64':
214217
# this test compiles under MinGW but fails when run under Wine
215218
disabled_tests.append('certstor_system')

0 commit comments

Comments
 (0)