Skip to content

Commit 3e278f2

Browse files
author
cbuahin
committed
Fix build directory
Signed-off-by: cbuahin <caleb.buahin@gmail.com>
1 parent 87662f7 commit 3e278f2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/unit_testing.yml

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

0 commit comments

Comments
 (0)