Skip to content

Commit 5376d88

Browse files
Update the PATH variable with the newly installed EPAS directory to use the correct pg_config.
1 parent f733d12 commit 5376d88

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/run-python-tests-epas.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ jobs:
7373
IF %ERRORLEVEL% EQU 3010 cmd /c "exit /b 0"
7474
shell: cmd
7575

76+
- name: Add pg_config path to PATH
77+
shell: pwsh
78+
run: |
79+
$pgPath = "C:\\EPAS\\${{ matrix.pgver }}\\bin"
80+
Write-Output $pgPath
81+
Add-Content -Path $env:GITHUB_PATH -Value $pgPath
82+
pg_config --version
83+
7684
- name: Create the tablespace directory on Linux
7785
if: ${{ matrix.os == 'ubuntu-22.04' }}
7886
run: |

0 commit comments

Comments
 (0)