Browse Source

Merge pull request #1110

master
Valdis Vitolins 3 years ago
parent
commit
aa1730ff2c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      .github/workflows/ci.yml

+ 3
- 3
.github/workflows/ci.yml View File

@@ -35,8 +35,8 @@ jobs:
- name: autoconf
run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
- name: configure
run: CXXFLAGS="-fsanitize=undefined -g -Og" CFLAGS="-fsanitize=undefined -g -Og" ./configure
run: CXXFLAGS="-fsanitize=address -g -Og" CFLAGS="-fsanitize=address -g -Og" ./configure
- name: make
run: UBSAN_OPTIONS="halt_on_error=1" make
run: ASAN_OPTIONS="detect_leaks=0 new_delete_type_mismatch=0" make
- name: make check
run: UBSAN_OPTIONS="halt_on_error=1" make check
run: ASAN_OPTIONS="detect_leaks=0 new_delete_type_mismatch=0" make check

Loading…
Cancel
Save