From 5376d88444c34fafe1b10ad79fdbb79290059513 Mon Sep 17 00:00:00 2001 From: Yogesh Mahajan Date: Wed, 24 Sep 2025 15:55:10 +0530 Subject: [PATCH] Update the PATH variable with the newly installed EPAS directory to use the correct pg_config. --- .github/workflows/run-python-tests-epas.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/run-python-tests-epas.yml b/.github/workflows/run-python-tests-epas.yml index 025d99265..3c4615829 100644 --- a/.github/workflows/run-python-tests-epas.yml +++ b/.github/workflows/run-python-tests-epas.yml @@ -73,6 +73,14 @@ jobs: IF %ERRORLEVEL% EQU 3010 cmd /c "exit /b 0" shell: cmd + - name: Add pg_config path to PATH + shell: pwsh + run: | + $pgPath = "C:\\EPAS\\${{ matrix.pgver }}\\bin" + Write-Output $pgPath + Add-Content -Path $env:GITHUB_PATH -Value $pgPath + pg_config --version + - name: Create the tablespace directory on Linux if: ${{ matrix.os == 'ubuntu-22.04' }} run: |