Remove unrolling of last iteration of loop for x86 decode #61
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: macOS CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| ubuntu-build: | |
| if: >- | |
| ! contains(toJSON(github.event.commits.*.message), '[skip ci]') && | |
| ! contains(toJSON(github.event.commits.*.message), '[skip github]') | |
| runs-on: macos-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - {compiler: gcc} | |
| - {compiler: clang} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use cmake (debug) | |
| run: | | |
| mkdir builddebug && | |
| cd builddebug && | |
| cmake .. -DCMAKE_BUILD_TYPE=buildundefsani -DSTREAMVBYTE_ENABLE_EXAMPLES=ON -DSTREAMVBYTE_ENABLE_TESTS=ON -DSTREAMVBYTE_WALL=ON -DSTREAMVBYTE_WERROR=ON -DCMAKE_C_COMPILER=${{matrix.compiler}} && | |
| cmake --build . && | |
| ctest --output-on-failure | |
| - name: Use cmake (release) | |
| run: | | |
| mkdir buildrelease && | |
| cd buildrelease && | |
| cmake .. -DCMAKE_BUILD_TYPE=Release -DSTREAMVBYTE_ENABLE_EXAMPLES=ON -DSTREAMVBYTE_ENABLE_TESTS=ON -DSTREAMVBYTE_WALL=ON -DSTREAMVBYTE_WERROR=ON && | |
| cmake --build . && | |
| ctest --output-on-failure | |
| - name: Use cmake (undefined sanitizer) | |
| run: | | |
| mkdir buildundefsani && | |
| cd buildundefsani && | |
| cmake .. -DSTREAMVBYTE_SANITIZE_UNDEFINED=ON -DCMAKE_BUILD_TYPE=buildundefsani -DSTREAMVBYTE_ENABLE_EXAMPLES=ON -DSTREAMVBYTE_ENABLE_TESTS=ON -DSTREAMVBYTE_WALL=ON -DSTREAMVBYTE_WERROR=ON && | |
| cmake --build . && | |
| ctest --output-on-failure |