diff options
author | PGP <[email protected]> | 2020-02-22 09:37:23 +0100 |
---|---|---|
committer | PGP <[email protected]> | 2020-02-22 09:37:23 +0100 |
commit | 432a659df15b58c759fdc5541fa39c009f2076cf (patch) | |
tree | 5213867da8871c89a761ac113bb9782355ff58e3 /src/scripts/ci_build.py | |
parent | 766fbc0ecc413aff5415f5d7244a8dd701acc0b0 (diff) |
Disable certstore system test on Wine (cross-mingw64 target) - fixes CI
Diffstat (limited to 'src/scripts/ci_build.py')
-rwxr-xr-x | src/scripts/ci_build.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index ee1262f36..0c9e7dd1f 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -100,6 +100,10 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, flags += ['--with-doxygen', '--with-sphinx', '--with-rst2man'] test_cmd = None + if target == 'cross-win64': + # this test compiles under MinGW but fails when run under Wine + test_cmd += ['--skip-tests=certstor_system'] + if target == 'coverage': flags += ['--with-coverage-info', '--with-debug-info', '--test-mode'] build_targets += ['bogo_shim'] |