Roll PostgreSQL 11..=15 tests to 13..=17
This commit is contained in:
parent
1678b19a46
commit
9f6ea96e03
3 changed files with 78 additions and 78 deletions
2
.github/workflows/sqlx.yml
vendored
2
.github/workflows/sqlx.yml
vendored
|
@ -182,7 +182,7 @@ jobs:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
postgres: [15, 11]
|
postgres: [17, 13]
|
||||||
runtime: [async-std, tokio]
|
runtime: [async-std, tokio]
|
||||||
tls: [native-tls, rustls-aws-lc-rs, rustls-ring, none]
|
tls: [native-tls, rustls-aws-lc-rs, rustls-ring, none]
|
||||||
needs: check
|
needs: check
|
||||||
|
|
|
@ -209,10 +209,84 @@ services:
|
||||||
MARIADB_DATABASE: sqlx
|
MARIADB_DATABASE: sqlx
|
||||||
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 1
|
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 1
|
||||||
#
|
#
|
||||||
# PostgreSQL 15.x, 14.x, 13.x, 12.x, 11.x
|
# PostgreSQL 17.x, 16.x, 15.x, 14.x, 13.x
|
||||||
# https://www.postgresql.org/support/versioning/
|
# https://www.postgresql.org/support/versioning/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
postgres_17:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: postgres/Dockerfile
|
||||||
|
args:
|
||||||
|
VERSION: 17
|
||||||
|
ports:
|
||||||
|
- 5432
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: sqlx
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: password
|
||||||
|
POSTGRES_HOST_AUTH_METHOD: scram-sha-256
|
||||||
|
POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
|
||||||
|
volumes:
|
||||||
|
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
||||||
|
# Loading `pg_stat_statements` should serve as a regression test for:
|
||||||
|
# https://github.com/launchbadge/sqlx/issues/2622
|
||||||
|
command: >
|
||||||
|
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c shared_preload_libraries=pg_stat_statements
|
||||||
|
|
||||||
|
postgres_17_client_ssl:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: postgres/Dockerfile
|
||||||
|
args:
|
||||||
|
VERSION: 17
|
||||||
|
ports:
|
||||||
|
- 5432
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: sqlx
|
||||||
|
POSTGRES_HOST_AUTH_METHOD: trust
|
||||||
|
POSTGRES_INITDB_ARGS: --auth-host=trust
|
||||||
|
volumes:
|
||||||
|
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
||||||
|
command: >
|
||||||
|
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c ssl_ca_file=/var/lib/postgresql/ca.crt -c hba_file=/var/lib/postgresql/pg_hba.conf
|
||||||
|
|
||||||
|
postgres_16:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: postgres/Dockerfile
|
||||||
|
args:
|
||||||
|
VERSION: 16
|
||||||
|
ports:
|
||||||
|
- 5432
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: sqlx
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: password
|
||||||
|
POSTGRES_HOST_AUTH_METHOD: scram-sha-256
|
||||||
|
POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
|
||||||
|
volumes:
|
||||||
|
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
||||||
|
command: >
|
||||||
|
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key
|
||||||
|
|
||||||
|
postgres_16_client_ssl:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: postgres/Dockerfile
|
||||||
|
args:
|
||||||
|
VERSION: 16
|
||||||
|
ports:
|
||||||
|
- 5432
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: sqlx
|
||||||
|
POSTGRES_HOST_AUTH_METHOD: trust
|
||||||
|
POSTGRES_INITDB_ARGS: --auth-host=trust
|
||||||
|
volumes:
|
||||||
|
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
||||||
|
command: >
|
||||||
|
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c ssl_ca_file=/var/lib/postgresql/ca.crt -c hba_file=/var/lib/postgresql/pg_hba.conf
|
||||||
|
|
||||||
postgres_15:
|
postgres_15:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
@ -229,10 +303,8 @@ services:
|
||||||
POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
|
POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
|
||||||
volumes:
|
volumes:
|
||||||
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
||||||
# Loading `pg_stat_statements` should serve as a regression test for:
|
|
||||||
# https://github.com/launchbadge/sqlx/issues/2622
|
|
||||||
command: >
|
command: >
|
||||||
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c shared_preload_libraries=pg_stat_statements
|
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key
|
||||||
|
|
||||||
postgres_15_client_ssl:
|
postgres_15_client_ssl:
|
||||||
build:
|
build:
|
||||||
|
@ -322,75 +394,3 @@ services:
|
||||||
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
||||||
command: >
|
command: >
|
||||||
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c ssl_ca_file=/var/lib/postgresql/ca.crt -c hba_file=/var/lib/postgresql/pg_hba.conf
|
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c ssl_ca_file=/var/lib/postgresql/ca.crt -c hba_file=/var/lib/postgresql/pg_hba.conf
|
||||||
|
|
||||||
postgres_12:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: postgres/Dockerfile
|
|
||||||
args:
|
|
||||||
VERSION: 12
|
|
||||||
ports:
|
|
||||||
- 5432
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: sqlx
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: password
|
|
||||||
POSTGRES_HOST_AUTH_METHOD: scram-sha-256
|
|
||||||
POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
|
|
||||||
volumes:
|
|
||||||
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
|
||||||
command: >
|
|
||||||
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key
|
|
||||||
|
|
||||||
postgres_12_client_ssl:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: postgres/Dockerfile
|
|
||||||
args:
|
|
||||||
VERSION: 12.3
|
|
||||||
ports:
|
|
||||||
- 5432
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: sqlx
|
|
||||||
POSTGRES_HOST_AUTH_METHOD: trust
|
|
||||||
POSTGRES_INITDB_ARGS: --auth-host=trust
|
|
||||||
volumes:
|
|
||||||
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
|
||||||
command: >
|
|
||||||
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c ssl_ca_file=/var/lib/postgresql/ca.crt -c hba_file=/var/lib/postgresql/pg_hba.conf
|
|
||||||
|
|
||||||
postgres_11:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: postgres/Dockerfile
|
|
||||||
args:
|
|
||||||
VERSION: 11
|
|
||||||
ports:
|
|
||||||
- 5432
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: sqlx
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: password
|
|
||||||
POSTGRES_HOST_AUTH_METHOD: scram-sha-256
|
|
||||||
POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
|
|
||||||
volumes:
|
|
||||||
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
|
||||||
command: >
|
|
||||||
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key
|
|
||||||
|
|
||||||
postgres_11_client_ssl:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: postgres/Dockerfile
|
|
||||||
args:
|
|
||||||
VERSION: 11
|
|
||||||
ports:
|
|
||||||
- 5432
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: sqlx
|
|
||||||
POSTGRES_HOST_AUTH_METHOD: trust
|
|
||||||
POSTGRES_INITDB_ARGS: --auth-host=trust
|
|
||||||
volumes:
|
|
||||||
- "./postgres/setup.sql:/docker-entrypoint-initdb.d/setup.sql:z"
|
|
||||||
command: >
|
|
||||||
-c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key -c ssl_ca_file=/var/lib/postgresql/ca.crt -c hba_file=/var/lib/postgresql/pg_hba.conf
|
|
||||||
|
|
|
@ -175,7 +175,7 @@ for runtime in ["async-std", "tokio"]:
|
||||||
# postgres
|
# postgres
|
||||||
#
|
#
|
||||||
|
|
||||||
for version in ["15", "14", "13", "12", "11"]:
|
for version in ["17", "16", "15", "14", "13"]:
|
||||||
run(
|
run(
|
||||||
f"cargo test --no-default-features --features any,postgres,macros,_unstable-all-types,runtime-{runtime},tls-{tls}",
|
f"cargo test --no-default-features --features any,postgres,macros,_unstable-all-types,runtime-{runtime},tls-{tls}",
|
||||||
comment=f"test postgres {version}",
|
comment=f"test postgres {version}",
|
||||||
|
|
Loading…
Add table
Reference in a new issue