From 5fbf907471b11b970cf0b7799410007ea83d3df5 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 11 Dec 2021 14:09:37 -0600 Subject: [PATCH] Temporarily remove cockroachdb from CI pgtype has a ton of tests that don't work on CockroachDB. And because of how the tests are structured it is difficult to skip just those tests. pgtype may have significant changes before v5 is released so delay updating these tests. --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af164815..bda3789b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,8 @@ jobs: strategy: matrix: go-version: [1.17] - pg-version: [10, 11, 12, 13, 14, cockroachdb] + pg-version: [10, 11, 12, 13, 14] + # pg-version: [10, 11, 12, 13, 14, cockroachdb] include: - pg-version: 10 pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test @@ -57,9 +58,9 @@ jobs: pgx-test-tls-conn-string: postgres://pgx_md5:secret@127.0.0.1/pgx_test?sslmode=require pgx-test-md5-password-conn-string: postgres://pgx_md5:secret@127.0.0.1/pgx_test pgx-test-plain-password-conn-string: postgres://pgx_pw:secret@127.0.0.1/pgx_test - - pg-version: cockroachdb - pgx-test-database: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on" - pgx-test-conn-string: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on" + # - pg-version: cockroachdb + # pgx-test-database: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on" + # pgx-test-conn-string: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on" steps: