[GL] Refactor the algorithm templates to use search-node callbacks #1057
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: G++ | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| paths: | |
| - .github/workflows/gpp.yaml | |
| - CMakeLists.txt | |
| - cmake/ | |
| - include/** | |
| - tests/** | |
| jobs: | |
| build: | |
| name: Build and Run Tests (G++) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Prepare | |
| env: | |
| CC: gcc-14 | |
| CXX: g++-14 | |
| run: | | |
| cmake -B build_gcc -DBUILD_TESTS=ON -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC | |
| continue-on-error: false | |
| - name: Build Tests | |
| run: | | |
| cmake --build build_gcc/ -j$(nproc) | |
| continue-on-error: false | |
| - name: Run Tests | |
| run: | | |
| ./build_gcc/tests/gl | |
| ./build_gcc/tests/hgl |