Skip to content

Commit

Permalink
Test against postgres versions 14-16
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwheeler123 committed Jun 9, 2024
1 parent 9422d82 commit 943038f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
needs: [check]
strategy:
matrix:
pg: [10, 11, 12, 13]
pg: [10, 11, 12, 13, 14, 15, 16]
jdk: [11]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion driver/src/build/testing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
apply { type(DockerComposePlugin::class) }


val defaultPostgresVersions by extra("13, 12, 11, 10, 9.6, 9.5")
val defaultPostgresVersions by extra("16, 15, 14, 13, 12, 11")


val testTask = tasks.named<Test>("test") {
Expand Down
4 changes: 2 additions & 2 deletions driver/src/test/resources/certdir/server/pg_hba.conf
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ local all all trust
# IPv4 local connections:
host hostdb all 0.0.0.0/0 md5
hostnossl hostnossldb all 0.0.0.0/0 md5
hostssl hostssldb all 0.0.0.0/0 md5 clientcert=0
hostssl hostsslcertdb all 0.0.0.0/0 md5 clientcert=1
hostssl hostssldb all 0.0.0.0/0 md5
hostssl hostsslcertdb all 0.0.0.0/0 md5 clientcert=verify-ca
hostssl certdb all 0.0.0.0/0 cert
host test all 0.0.0.0/0 md5
host testnoexts all 0.0.0.0/0 md5

0 comments on commit 943038f

Please sign in to comment.