Fix stack-buffer-overflow reported by asan. #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
compiler: [gcc, clang] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: make | |
run: make CC=${{ matrix.compiler }} | |
- name: make test | |
run: make test CC=${{ matrix.compiler }} | |
- name: make test-asan | |
run: make test-asan CC=${{ matrix.compiler }} | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install lcov | |
run: sudo apt-get install lcov | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: make coverage | |
run: make coverage CC=gcc | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Coverage | |
path: ./coverage |