|
|
@@ -23,3 +23,20 @@ jobs: |
|
|
|
run: make |
|
|
|
- name: make check |
|
|
|
run: make check |
|
|
|
|
|
|
|
asan: |
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- name: dependencies |
|
|
|
run: sudo apt-get update && sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown |
|
|
|
- name: autoconf |
|
|
|
run: ./autogen.sh ; chmod -x INSTALL m4/*.m4 |
|
|
|
- name: configure |
|
|
|
run: CXXFLAGS="-fsanitize=address -g -Og" CFLAGS="-fsanitize=address -g -Og" ./configure |
|
|
|
- name: make |
|
|
|
run: ASAN_OPTIONS="detect_leaks=0 new_delete_type_mismatch=0" make |
|
|
|
- name: make check |
|
|
|
run: ASAN_OPTIONS="detect_leaks=0 new_delete_type_mismatch=0" make check |