Skip to content

Commit fcfb205

Browse files
authored
Update cmake-errors.yml
1 parent 42154c8 commit fcfb205

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/cmake-errors.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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+

0 commit comments

Comments
 (0)