Merge pull request #274 from BYVoid/bazel #413
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: Ubuntu 22.04 CI (clang 14) | |
on: [push, pull_request] | |
jobs: | |
ubuntu-build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install clang++-14 | |
run: sudo apt-get install -y clang++-14 | |
- name: Use cmake | |
run: | | |
mkdir build && | |
cd build && | |
CXX=clang++-14 cmake -DFASTFLOAT_TEST=ON .. && | |
cmake --build . && | |
ctest --output-on-failure | |
- name: Use cmake CXX20 | |
run: | | |
mkdir build20 && | |
cd build20 && | |
CXX=clang++-14 cmake -DFASTFLOAT_CONSTEXPR_TESTS=ON -DFASTFLOAT_CXX_STANDARD=20 -DFASTFLOAT_TEST=ON .. && | |
cmake --build . && | |
ctest --output-on-failure |