Skip to content

Commit f27789d

Browse files
committed
Try build without --parallel on Windows
1 parent c48666e commit f27789d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci-build-binary-artifacts.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
-DVCPKG_TRIPLET=${{ matrix.triplet }} \
153153
-DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR }} \
154154
-S .
155-
cmake --build $BUILD_DIR --parallel --config Release
155+
cmake --build $BUILD_DIR --config Release
156156
cmake --install $BUILD_DIR
157157
cp dependencies.txt ${{ env.INSTALL_DIR }}
158158
@@ -180,7 +180,7 @@ jobs:
180180
-DCMAKE_INSTALL_PREFIX=$INSTALL_DIR_DEBUG \
181181
-DCMAKE_BUILD_TYPE=Debug \
182182
-S .
183-
cmake --build $BUILD_DIR --parallel --config Debug
183+
cmake --build $BUILD_DIR --config Debug
184184
cmake --install $BUILD_DIR --config Debug
185185
cp dependencies.txt $INSTALL_DIR_DEBUG
186186

.github/workflows/ci-pr-validation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259
shell: bash
260260
run: |
261261
if [ "$RUNNER_OS" == "Windows" ]; then
262-
cmake --build ./build-1 --parallel --config Release
262+
cmake --build ./build-1 --config Release
263263
cmake --install ./build-1
264264
fi
265265
@@ -296,7 +296,7 @@ jobs:
296296
-DCMAKE_INSTALL_PREFIX="${{ env.INSTALL_DIR }}" \
297297
-DCMAKE_BUILD_TYPE=Debug \
298298
-S .
299-
cmake --build ./build-2 --parallel --config Debug
299+
cmake --build ./build-2 --config Debug
300300
fi
301301
302302
package:

0 commit comments

Comments
 (0)