File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ jobs:
111
111
- name : Build (old CMake, gcc/Clang)
112
112
if : matrix.cmake == '3.10.x' && matrix.os != 'windows-latest'
113
113
run : |
114
- cmake -H. -Bbuild -D'DEPTHAI_BUILD_EXAMPLES=ON' -D'DEPTHAI_BUILD_TESTS=ON' ${{ env.CMAKE_ARGS }}
115
- cmake --build build -- -j4
114
+ cmake -H. -Bbuild -D'CMAKE_BUILD_TYPE=Release' -D'HUNTER_CONFIGURATION_TYPES=Release' -D' DEPTHAI_BUILD_EXAMPLES=ON' -D'DEPTHAI_BUILD_TESTS=ON' ${{ env.CMAKE_ARGS }}
115
+ cmake --build build --config Release -- -j4
116
116
117
117
# CMake binaries unavailable
118
118
# - name: Build (old CMake, MSVC)
@@ -124,8 +124,8 @@ jobs:
124
124
- name : Build (newest CMake)
125
125
if : matrix.cmake != '3.10.x'
126
126
run : |
127
- cmake -S . -B build -D DEPTHAI_BUILD_EXAMPLES=ON -D DEPTHAI_BUILD_TESTS=ON ${{ env.CMAKE_ARGS }}
128
- cmake --build build --parallel 4
127
+ cmake -S . -B build -D CMAKE_BUILD_TYPE=Release -D HUNTER_CONFIGURATION_TYPES=Release -D DEPTHAI_BUILD_EXAMPLES=ON -D DEPTHAI_BUILD_TESTS=ON ${{ env.CMAKE_ARGS }}
128
+ cmake --build build --parallel 4 --config Release
129
129
130
130
integration :
131
131
runs-on : ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments