Add functions to skip forward/backward with an iterator, and use it to simplify roaring_bitmap_range_uint32_array #409
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: Ubuntu-Sanitized-UB-CI | |
| 'on': | |
| - push | |
| - pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| name: ubuntu-gcc | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| CXX: g++ | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Build and Test | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DROARING_SANITIZE_UNDEFINED=ON -DENABLE_ROARING_TESTS=ON .. | |
| cmake --build . | |
| ctest . --output-on-failure |