mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
ci: test on Postgres 14 (#1557)
This commit is contained in:
parent
12d9f54c7d
commit
f2b3cc8dc3
3 changed files with 5 additions and 5 deletions
2
.github/workflows/sqlx.yml
vendored
2
.github/workflows/sqlx.yml
vendored
|
@ -186,7 +186,7 @@ jobs:
|
|||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
matrix:
|
||||
postgres: [13, 9_6]
|
||||
postgres: [14, 9_6]
|
||||
runtime: [async-std, tokio, actix]
|
||||
tls: [native-tls, rustls]
|
||||
needs: check
|
||||
|
|
|
@ -95,7 +95,7 @@ services:
|
|||
MYSQL_DATABASE: sqlx
|
||||
|
||||
#
|
||||
# PostgreSQL 13.x, 12.x, 11.x 10.x, 9.6.x
|
||||
# PostgreSQL 14.x, 13.x, 12.x, 11.x 10.x, 9.6.x
|
||||
# https://www.postgresql.org/support/versioning/
|
||||
#
|
||||
|
||||
|
@ -104,7 +104,7 @@ services:
|
|||
context: .
|
||||
dockerfile: postgres/Dockerfile
|
||||
args:
|
||||
VERSION: 14rc1
|
||||
VERSION: 14
|
||||
ports:
|
||||
- 5432
|
||||
environment:
|
||||
|
|
|
@ -130,7 +130,7 @@ for runtime in ["async-std", "tokio", "actix"]:
|
|||
# postgres
|
||||
#
|
||||
|
||||
for version in ["13", "12", "11", "10", "9_6"]:
|
||||
for version in ["14", "13", "12", "11", "10", "9_6"]:
|
||||
run(
|
||||
f"cargo test --no-default-features --features macros,offline,any,all-types,postgres,runtime-{runtime}-{tls}",
|
||||
comment=f"test postgres {version}",
|
||||
|
@ -139,7 +139,7 @@ for runtime in ["async-std", "tokio", "actix"]:
|
|||
)
|
||||
|
||||
## +ssl
|
||||
for version in ["13", "12", "11", "10", "9_6"]:
|
||||
for version in ["14", "13", "12", "11", "10", "9_6"]:
|
||||
run(
|
||||
f"cargo test --no-default-features --features macros,offline,any,all-types,postgres,runtime-{runtime}-{tls}",
|
||||
comment=f"test postgres {version} ssl",
|
||||
|
|
Loading…
Reference in a new issue