Skip to content

- bulk write format and value #32

- bulk write format and value

- bulk write format and value #32

Workflow file for this run

name: MacOS
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
macos-clang:
runs-on: macos-latest
name: macOS-Clang
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: brew update && brew install ninja cmake
- name: Build tests
run: |
cmake tests -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++
cmake --build build --parallel
- name: Run Unit Tests
run: ./build/tests
- name: Build examples
run: |
cmake examples -B build2 -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++
cmake --build build2 --parallel
- name: Build benchmarks
run: |
cmake bench -B build3 -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++
cmake --build build3 --parallel