Add CMake stuff to gitignore #35
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: C89 CI | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
- chore/* | |
- feat/* | |
- fix/* | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: configure | |
run: cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -H./ -B./build | |
- name: build | |
run: cmake --build ./build --config MinSizeRel --target all |