Run ASAN and AppVeyor builds for imported patches

This commit is contained in:
Anton Kochkov 2020-12-14 13:16:20 +08:00 committed by Giovanni
parent 5992950247
commit 73ab3594c5
2 changed files with 2 additions and 1 deletions

View file

@ -10,6 +10,7 @@ branches:
- dev
- /windows-.*/
- /.*-windows/
- /import-.*/
# Environment variables
environment:

View file

@ -93,7 +93,7 @@ jobs:
asan: true
asan_options: 'detect_leaks=0,detect_odr_violation=0,allocator_may_return_null=1'
run_tests: true
enabled: ${{ github.event_name != 'pull_request' || contains(github.head_ref, 'asan') }}
enabled: ${{ github.event_name != 'pull_request' || contains(github.head_ref, 'asan') || contains(github.head_ref, 'import')}}
timeout: 100
# NOTE: asan errors ignored for release- branch for now, because there are too many issues that would block the release
ignore_error: ${{ github.event_name == 'push' && contains(github.ref, 'release-') }}