Skip to content

Improve compile time string view logging levels #1419

Improve compile time string view logging levels

Improve compile time string view logging levels #1419

Workflow file for this run

name: MacOS
on:
push:
branches:
- main
pull_request:
jobs:
xcode:
name: Build on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Install dependencies
run: brew install cmake ninja
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=g++-11 -DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected] -GNinja
- name: Build
working-directory: ${{github.workspace}}/build
run: ninja
- name: Tests
working-directory: ${{github.workspace}}/build
run: ctest -j 2 --output-on-failure