File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -97,19 +97,17 @@ jobs:
9797 - name : Install Required Libraries (Windows)
9898 if : ${{ matrix.os == 'windows-latest' }}
9999 run : |
100- ${{ env.VCPKG_EXE }} new --application
101100 ${{ env.VCPKG_EXE }} install
102101
103102 - name : Build Binaries
104103 env :
105104 VCPKG_ROOT : ${{ env.VCPKG_ROOT }}
106105 run : |
107- cmake --preset=${{ matrix.cmake_preset }}
108- cmake -B ${{github.workspace}}/build-${{ matrix.vcpkg_triplet }} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_TESTS=ON
109- cmake --build ${{github.workspace}}/build-${{ matrix.vcpkg_triplet }} --target package
106+ cmake -B build-${{ matrix.vcpkg_triplet }} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_TESTS=ON --preset=${{ matrix.cmake_preset }}
107+ cmake --build build-${{ matrix.vcpkg_triplet }} --target package
110108
111109 - name : Unit Test
112- run : ctest --test-dir ${{github.workspace}}/ build-${{ matrix.vcpkg_triplet }} -C Debug --output-on-failure
110+ run : ctest --test-dir build-${{ matrix.vcpkg_triplet }} -C Debug --output-on-failure
113111
114112
115113 - name : Upload Artifacts
You can’t perform that action at this time.
0 commit comments