Rename is_iota to is_ptr and is_iota_any to is_iota #71
This file contains hidden or 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: gcc-14 | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| gcc14: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| cxxflags: ['"-O3 -std=c++23 -DRA_OPT_SMALL=0"', | |
| '"-O3 -std=c++23 -DRA_OPT_SMALL=1"', | |
| '"-O3 -DRA_CHECK=0 -DNDEBUG -std=c++23"'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: update | |
| run: | | |
| sudo apt update | |
| sudo apt install gcc-14 g++-14 | |
| - name: configure | |
| run: CXXFLAGS=${{matrix.cxxflags}} cmake . | |
| env: | |
| CXX: g++-14 | |
| CC: gcc-14 | |
| - name: make | |
| run: make | |
| - name: make test | |
| run: make test |