File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 16
16
build_matrix :
17
17
strategy :
18
18
matrix :
19
- os : [ubuntu-latest, windows-latest, macos-15]
20
- # os: [ubuntu-latest, windows-latest]
19
+ # os: [ubuntu-latest, windows-latest, macos-15]
20
+ os : [ubuntu-latest, windows-latest]
21
21
runs-on : ${{ matrix.os }}
22
22
defaults :
23
23
run :
33
33
run : cd build && cmake --build . --config $BUILD_TYPE
34
34
- name : run-unit-test
35
35
run : cd build && ctest -C $BUILD_TYPE
36
+ macos_build :
37
+ runs-on : macos-15
38
+ defaults :
39
+ run :
40
+ shell : bash
41
+ steps :
42
+ - name : checkout
43
+ uses : actions/checkout@v4
44
+ - name : create-build-dir
45
+ run : mkdir build
46
+ - name : configure-cmake
47
+ run : cd build && cmake -D CMAKE_CXX_COMPILER=$brew --prefix llvm@18)/binclang++ -D WAIT_QUEUE_BUILD_TESTS:BOOL=ON -D WAIT_QUEUE_BUILD_EXAMPLES:BOOL=ON -D JM_CIRCULAR_BUFFER_BUILD_TESTS:BOOL=OFF ..
48
+ - name : build
49
+ run : cd build && cmake --build . --config $BUILD_TYPE
50
+ - name : run-unit-test
51
+ run : cd build && ctest -C $BUILD_TYPE
You can’t perform that action at this time.
0 commit comments