From 40d6bdb2e3dcdf3aa61d66b8e83ef11837d228bc Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 2 Nov 2024 12:22:50 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1040b9f..3b83eda2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,6 +143,8 @@ jobs: - name: Tests shell: pwsh run: | - cd build/${{ matrix.config.BUILD_TYPE }} - ctest -VV -C ${{ matrix.config.BUILD_TYPE }} --test-dir ../tests --no-tests=error + $DLL_PATH = Join-Path -Path (Get-Location) -ChildPath "build/Release" + $env:Path += ';' + $env:DLL_PATH + echo "Path=$env:Path" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append + ctest -VV -C ${{ matrix.config.BUILD_TYPE }} --test-dir build/tests --no-tests=error