Skip to content

Commit db0dca8

Browse files
committed
fix workflows
1 parent b756f4a commit db0dca8

1 file changed

Lines changed: 2 additions & 10 deletions

File tree

.github/workflows/windows.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,12 @@ jobs:
3636

3737
- name: Configure & build library
3838
run: |
39-
cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake \
40-
-DCMAKE_INSTALL_PREFIX=local \
41-
-S . -B build \
42-
-G "Visual Studio 17 2022" -A x64 \
43-
-DCMAKE_BUILD_TYPE=Release
39+
cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake -DCMAKE_INSTALL_PREFIX=local -S . -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
4440
cmake --build build --config Release --target INSTALL
4541
4642
- name: Configure & build tests
4743
run: |
48-
cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake \
49-
-DCMAKE_PREFIX_PATH=local \
50-
-DTEST_INSTALLED_VERSION=1 \
51-
-S test -B build-test \
52-
-G "Visual Studio 17 2022" -A x64
44+
cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake -DCMAKE_PREFIX_PATH=local -DTEST_INSTALLED_VERSION=1 -S test -B build-test -G "Visual Studio 17 2022" -A x64
5345
cmake --build build-test --config Debug
5446
5547
- name: Run tests

0 commit comments

Comments
 (0)