Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kotbegemot committed Mar 17, 2024
1 parent 3fef01f commit 9634d0c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/mac-os.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,21 @@ jobs:
- name: Install system dependencies
run: |
brew install ninja cmake
python3 -m pip install --no-cache-dir conan==1.62
python3 -m pip install --no-cache-dir conan==1.63
- name: Configure CMake
env:
BUILD_TYPE: ${{matrix.build_type}}
CXX_STANDARD: ${{matrix.cxx_standard}}
run: |
mkdir -p build
mkdir -p build
cmake -B build -GNinja \
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
-DCMAKE_CXX_STANDARD=${CXX_STANDARD} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_STANDARD=17 \
-DALLOW_EXAMPLES=ON \
-DALLOW_TESTS=ON \
-DENABLE_TESTS_MEASUREMENTS=ON \
-DALLOW_BENCHMARK=ON \
-DEXCEPTIONS_DISABLE=ON \
-DRTTI_DISABLE=ON
-DALLOW_BENCHMARK=ON
- name: Build
run: cmake --build build
Expand Down

0 comments on commit 9634d0c

Please sign in to comment.