This is an automated email from the ASF dual-hosted git repository. maxyang pushed a commit to branch merge-with-upstream in repository https://gitbox.apache.org/repos/asf/cloudberry-pxf.git
commit 7e7f496e0cab18bda9090f9cd26f5a05a1baf398 Author: Dianjin Wang <[email protected]> AuthorDate: Fri Dec 19 18:29:14 2025 +0800 Add external-table to test matrix --- .github/workflows/pxf-ci.yml | 1 + concourse/docker/pxf-cbdb-dev/ubuntu/script/run_tests.sh | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pxf-ci.yml b/.github/workflows/pxf-ci.yml index 94876b25..d7c9a29d 100644 --- a/.github/workflows/pxf-ci.yml +++ b/.github/workflows/pxf-ci.yml @@ -103,6 +103,7 @@ jobs: matrix: test_group: - cli + - external-table - server - sanity - smoke diff --git a/concourse/docker/pxf-cbdb-dev/ubuntu/script/run_tests.sh b/concourse/docker/pxf-cbdb-dev/ubuntu/script/run_tests.sh index 73cd108a..1741540d 100755 --- a/concourse/docker/pxf-cbdb-dev/ubuntu/script/run_tests.sh +++ b/concourse/docker/pxf-cbdb-dev/ubuntu/script/run_tests.sh @@ -718,6 +718,11 @@ run_single_group() { cd "${REPO_ROOT}/cli" make test ;; + external-table) + [ -f "/usr/local/cloudberry-db/cloudberry-env.sh" ] && source /usr/local/cloudberry-db/cloudberry-env.sh + cd "${REPO_ROOT}/external-table" + make installcheck + ;; server) cd "${REPO_ROOT}/server" ./gradlew test @@ -769,7 +774,7 @@ run_single_group() { ;; *) echo "Unknown test group: $group" - echo "Available groups: cli, server, sanity, smoke, hdfs, hcatalog, hcfs, hive, hbase, profile, jdbc, proxy, unused, s3, features, gpdb" + echo "Available groups: cli, external-table, server, sanity, smoke, hdfs, hcatalog, hcfs, hive, hbase, profile, jdbc, proxy, unused, s3, features, gpdb" exit 1 ;; esac --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
