| name: Ubuntu 20.04 CI (GCC 9, fast-math) | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu-build: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use cmake | |
| run: | | |
| mkdir build && | |
| cd build && | |
| cmake -DCMAKE_CXX_FLAGS="-ffast-math" -DFASTFLOAT_TEST=ON .. && | |
| cmake --build . && | |
| ctest --output-on-failure |