Skip to content

Commit

Permalink
Upgrade PostgreSQL in appveyor tests. (#562)
Browse files Browse the repository at this point in the history
Use PostgreSQL 13.  (Version 14 does not seem to be available yet.)
  • Loading branch information
jtv committed Apr 10, 2022
1 parent 12f26bf commit f88c5ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Configuration for test runs in Appveyor.
version: 1.0.{build}
image: Visual Studio 2022
services: postgresql12
services: postgresql13
# Run CMake to build libpqxx.sln.
before_build:
- cmd: >-
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
Expand All @@ -12,7 +14,7 @@ build:
project: libpqxx.sln
test_script:
- ps: >-
$env:Path += ";.\src\Release;C:\Program Files\PostgreSQL\12\bin"
$env:Path += ";.\src\Release;C:\Program Files\PostgreSQL\13\bin"
$env:PGUSER = "postgres"
Expand Down

0 comments on commit f88c5ba

Please sign in to comment.