mirror of https://github.com/jackc/pgx.git
Update supported / tested platforms
parent
a9f8400b01
commit
09c360f8aa
|
@ -10,15 +10,13 @@ jobs:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.15, 1.16]
|
go-version: [1.16, 1.17]
|
||||||
pg-version: [9.6, 10, 11, 12, 13, cockroachdb]
|
pg-version: [10, 11, 12, 13, 14, cockroachdb]
|
||||||
include:
|
include:
|
||||||
- pg-version: 9.6
|
|
||||||
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
|
||||||
- pg-version: 10
|
- pg-version: 10
|
||||||
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
||||||
- pg-version: 11
|
- pg-version: 11
|
||||||
|
@ -27,6 +25,8 @@ jobs:
|
||||||
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
||||||
- pg-version: 13
|
- pg-version: 13
|
||||||
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
||||||
|
- pg-version: 14
|
||||||
|
pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test
|
||||||
- pg-version: cockroachdb
|
- pg-version: cockroachdb
|
||||||
pgx-test-database: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on"
|
pgx-test-database: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on"
|
||||||
|
|
||||||
|
|
|
@ -149,7 +149,7 @@ In addition, there are tests specific for PgBouncer that will be executed if `PG
|
||||||
|
|
||||||
## Supported Go and PostgreSQL Versions
|
## Supported Go and PostgreSQL Versions
|
||||||
|
|
||||||
pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For [Go](https://golang.org/doc/devel/release.html#policy) that is the two most recent major releases and for [PostgreSQL](https://www.postgresql.org/support/versioning/) the major releases in the last 5 years. This means pgx supports Go 1.15 and higher and PostgreSQL 9.6 and higher. pgx also is tested against the latest version of [CockroachDB](https://www.cockroachlabs.com/product/).
|
pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For [Go](https://golang.org/doc/devel/release.html#policy) that is the two most recent major releases and for [PostgreSQL](https://www.postgresql.org/support/versioning/) the major releases in the last 5 years. This means pgx supports Go 1.16 and higher and PostgreSQL 10 and higher. pgx also is tested against the latest version of [CockroachDB](https://www.cockroachlabs.com/product/).
|
||||||
|
|
||||||
## Version Policy
|
## Version Policy
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue