From e6160afb5622e895c63de0a9d2489d910e0fcb1c Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 2 Nov 2024 13:05:30 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2eac0516..d81383dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,19 +139,12 @@ jobs: run: | cd build cmake --build . --parallel --config ${{ matrix.config.BUILD_TYPE }} - - - name: Copy DLLs to ctest build directory - shell: pwsh - run: | - $dllSourcePath = "build/${{ matrix.config.BUILD_TYPE }}" - $dllDestPath = "build/tests" - Copy-Item -Path "$dllSourcePath\*.dll" -Destination $dllDestPath -Force - - - - name: Tests + + - name: Run Tests shell: pwsh env: PATH: ${{ env.PATH }};${{ github.workspace }}\build\_deps\catch2-build\src\${{ matrix.config.BUILD_TYPE }};${{ github.workspace }}\build\${{ matrix.config.BUILD_TYPE }} run: | - ctest -VV -C ${{ matrix.config.BUILD_TYPE }} --test-dir build/tests --no-tests=error --build-config Release + build\tests\${{ matrix.config.BUILD_TYPE }}\spdlog-utests.exe +