Skip to content

Commit

Permalink
Support Postgresql 17.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkhipov committed Nov 5, 2024
1 parent 585224f commit 7506790
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- 14
- 15
- 16
- 17

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- 14.9-1
- 15.4-1
- 16.0-1
- 17.0-1
platform:
- x64
include:
Expand Down Expand Up @@ -72,7 +73,7 @@ jobs:
if ("$pg_version" -eq "9.6") {
& ".\postgresql.exe" --unattendedmodeui none --mode unattended --superpassword password --servicepassword password --install_runtimes 0 2>&1 | Out-Default
} else {
& ".\postgresql.exe" --unattendedmodeui none --mode unattended --superpassword password --servicepassword password 2>&1 | Out-Default
& ".\postgresql.exe" --unattendedmodeui none --mode unattended --superpassword password --servicepassword password --enable-components server,pgAdmin,stackbuilder,commandlinetools 2>&1 | Out-Default
}
- uses: actions/checkout@v3
Expand Down Expand Up @@ -102,6 +103,7 @@ jobs:
Start-Service -Name "postgresql$env:X64-$env:PG_VERSION"
Get-ChildItem -Path "$env:PG_ROOT\bin"
& "$env:PG_ROOT\bin\pg_regress.exe" "$env:PSQL_OPT=$env:PG_ROOT\bin" --dbname=pl_regression install no_system_period invalid_system_period no_history_table no_history_system_period invalid_types invalid_system_period_values versioning versioning_custom_system_time structure uninstall 2>&1 | Out-Default
if ($LASTEXITCODE -ne 0) {
Get-Content -Path ".\regression.diffs" | Out-Printer
Expand Down

0 comments on commit 7506790

Please sign in to comment.