Skip to content

Update to PostgreSQL v15 #1215

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:

version: '{build}'

stack: postgresql 13.4
stack: postgresql 15

environment:
PGUSER: postgres
Expand Down Expand Up @@ -34,7 +34,10 @@ for:
only:
- image: Visual Studio 2022
services:
- postgresql13
- postgresql15
install:
# Temporary workaround for https://help.appveyor.com/discussions/questions/60488-postgresql-version
- net start postgresql-x64-15
# REF: https://github.com/docascode/docfx-seed/blob/master/appveyor.yml
before_build:
- pwsh: |
Expand Down Expand Up @@ -101,7 +104,7 @@ build_script:

Write-Output "PostgreSQL version:"
if ($IsWindows) {
. "${env:ProgramFiles}\PostgreSQL\13\bin\psql" --version
. "${env:ProgramFiles}\PostgreSQL\15\bin\psql" --version
}
else {
psql --version
Expand Down
2 changes: 1 addition & 1 deletion run-docker-postgres.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ docker run --rm --name jsonapi-dotnet-core-testing `
-e POSTGRES_USER=postgres `
-e POSTGRES_PASSWORD=postgres `
-p 5432:5432 `
postgres:13.4
postgres:15