Add Zig implementation #31
Workflow file for this run
This file contains 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 11 CI (LLVM 13, GCC 10, 11, 12) | |
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-11 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {compiler: gcc-10} | |
- {compiler: gcc-11} | |
- {compiler: gcc-12} | |
- {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 |