Add geodesic polygon coverage mode for polygonToCellsExperimental #1235
Workflow file for this run
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: test-bench | |
| on: | |
| push: | |
| branches: [master, stable-*] | |
| pull_request: | |
| branches: [master, stable-*] | |
| jobs: | |
| tests: | |
| name: Benchmark ${{ matrix.compiler }} | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: ${{ matrix.compiler }} | |
| strategy: | |
| matrix: | |
| compiler: [clang, gcc] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure build | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_COUNTRY_BENCHMARKS=ON .. | |
| - name: Build | |
| run: | | |
| cd build | |
| make | |
| - name: Run benchmarks | |
| run: | | |
| cd build | |
| make benchmarks |