We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74491fb commit 2c48ba6Copy full SHA for 2c48ba6
.github/workflows/build_run_unit_test_cmake.yml
@@ -12,8 +12,8 @@ jobs:
12
build_matrix:
13
strategy:
14
matrix:
15
- # os: [ubuntu-latest, windows-latest, macos-14]
16
- os: [ubuntu-latest, windows-latest]
+ os: [ubuntu-latest, windows-latest, macos-14]
+ # os: [ubuntu-latest, windows-latest]
17
runs-on: ${{ matrix.os }}
18
defaults:
19
run:
@@ -24,7 +24,7 @@ jobs:
24
- name: create-build-dir
25
run: mkdir build
26
- name: configure-cmake
27
- run: cd build && cmake -D SHARED_BUFFER_BUILD_TESTS:BOOL=ON -D SHARED_BUFFER_BUILD_EXAMPLES:BOOL=ON ..
+ run: cd build && cmake -D SHARED_BUFFER_BUILD_TESTS:BOOL=ON -D SHARED_BUFFER_BUILD_EXAMPLES:BOOL=ON -D CATCH_CONFIG_CPP17_BYTE:BOOL=ON ..
28
- name: build
29
run: cd build && cmake --build . --config $BUILD_TYPE
30
- name: run-unit-test
0 commit comments