File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -153,16 +153,17 @@ jobs:
153153 CC : ${{ matrix.compiler }}
154154 CFLAGS : ${{ matrix.cflags }}
155155 run : |
156- cmake ${{ matrix.cmake-args }} \
156+ cmake ${{ matrix.cmake-args }} \
157157 -S "${{ matrix.src-dir || '.' }}" \
158- -B "${{ matrix.build-dir || build }}" \
158+ -B "${{ matrix.build-dir || ' build' }}" \
159159 -DMULLE_SDK_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}" \
160160 -DCMAKE_INSTALL_PREFIX="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}" \
161- -DCMAKE_PREFIX_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}"
162- -DCMAKE_BUILD_TYPE="${{ matrix.build-config || 'Release' }}" \
163-
161+ -DCMAKE_PREFIX_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}" \
162+ -DCMAKE_BUILD_TYPE="${{ matrix.build-config || 'Release' }}"
163+
164164 - name : Compile source code
165165 shell : bash
166166 run : |
167- cmake --build "${{ matrix.build-dir || '. ' }}" \
167+ cmake --build "${{ matrix.build-dir || 'build ' }}" \
168168 --config "${{ matrix.build-config || 'Release' }}"
169+
You can’t perform that action at this time.
0 commit comments