diff --git a/.github/workflows/sqlx.yml b/.github/workflows/sqlx.yml index 229c248549..44964b509b 100644 --- a/.github/workflows/sqlx.yml +++ b/.github/workflows/sqlx.yml @@ -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 diff --git a/tests/docker-compose.yml b/tests/docker-compose.yml index a6f0109692..a5779d694c 100644 --- a/tests/docker-compose.yml +++ b/tests/docker-compose.yml @@ -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: diff --git a/tests/x.py b/tests/x.py index 3fd77e8892..33e5ffce9e 100755 --- a/tests/x.py +++ b/tests/x.py @@ -130,7 +130,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data # 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 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data ) ## +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",