Build: set optimization level to 2 #6
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-gcc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install packages | |
run: sudo apt-get install -y flex bison | |
- name: build the app | |
run: mkdir build && cd build && cmake .. && cmake --build . | |
- name: run the tests | |
run: ./build/tests | |
build-clang: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install packages | |
run: sudo apt-get install -y clang-12 clang++-12 flex bison | |
- name: build the app | |
run: mkdir build && cd build && export CXX=clang++-12 && export CC=clang-12 && cmake .. && cmake --build . | |
- name: run the tests | |
run: ./build/tests |