This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 5864459f ci: test PostgreSQL 16 (#1235)
5864459f is described below
commit 5864459f1cdc84840d519cf5c8f3599bf9951294
Author: David Li <[email protected]>
AuthorDate: Mon Oct 30 10:53:35 2023 -0400
ci: test PostgreSQL 16 (#1235)
Fixes #1098.
---
.github/workflows/integration.yml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/.github/workflows/integration.yml
b/.github/workflows/integration.yml
index 3995db9c..acab5b05 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -302,6 +302,20 @@ jobs:
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
docker compose down
+ - name: Test PostgreSQL Driver - postgres 16
+ shell: bash -l {0}
+ env:
+ BUILD_ALL: "0"
+ BUILD_DRIVER_POSTGRESQL: "1"
+ ADBC_USE_ASAN: "ON"
+ ADBC_USE_UBSAN: "ON"
+ ADBC_POSTGRESQL_TEST_URI:
"postgresql://localhost:5432/postgres?user=postgres&password=password"
+ PYTEST_ADDOPTS: "--error-for-skips"
+ run: |
+ env POSTGRES_VERSION=16 docker compose up --wait --detach
postgres-test
+ ./ci/scripts/cpp_test.sh "$(pwd)/build"
+ ./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
+ docker compose down
snowflake:
name: "Snowflake Integration Tests"