Skip to content

Commit 2c48ba6

Browse files
Adding Catch2 flag for std::byte formatting
1 parent 74491fb commit 2c48ba6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_run_unit_test_cmake.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
build_matrix:
1313
strategy:
1414
matrix:
15-
# os: [ubuntu-latest, windows-latest, macos-14]
16-
os: [ubuntu-latest, windows-latest]
15+
os: [ubuntu-latest, windows-latest, macos-14]
16+
# os: [ubuntu-latest, windows-latest]
1717
runs-on: ${{ matrix.os }}
1818
defaults:
1919
run:
@@ -24,7 +24,7 @@ jobs:
2424
- name: create-build-dir
2525
run: mkdir build
2626
- name: configure-cmake
27-
run: cd build && cmake -D SHARED_BUFFER_BUILD_TESTS:BOOL=ON -D SHARED_BUFFER_BUILD_EXAMPLES:BOOL=ON ..
27+
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 ..
2828
- name: build
2929
run: cd build && cmake --build . --config $BUILD_TYPE
3030
- name: run-unit-test

0 commit comments

Comments
 (0)