Skip to content

Commit ec7cc75

Browse files
committed
Fix: Correct CI MSVC invocation.
1 parent 22849ab commit ec7cc75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,9 @@ jobs:
276276
run: |
277277
mkdir build-release-cl
278278
cd build-release-cl
279-
cmake -DCMAKE_BUILD_TYPE=Release ..
280-
cmake --build ..
279+
cmake ..
280+
cmake --build . --config Release
281281
- name: test-release-cl
282282
run: |
283283
cd build-release-cl
284-
ctest -VV
284+
ctest --build-config Release -VV

0 commit comments

Comments
 (0)