This is an automated email from the ASF dual-hosted git repository.
espino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudberry.git
The following commit(s) were added to refs/heads/main by this push:
new 9a670c1a55 ci: Re-enable tests with increased shared memory (#727)
9a670c1a55 is described below
commit 9a670c1a5564d35927f85252ed965600da1a343d
Author: Ed Espino <[email protected]>
AuthorDate: Sun Nov 24 22:50:20 2024 -0800
ci: Re-enable tests with increased shared memory (#727)
The cbdb_parallel and instr_in_shmem_verify test suites were
previously disabled due to insufficient shared memory in the GitHub
Actions CI environment. By adding --shm-size=2gb to the container
configuration, these tests now pass consistently.
Changes:
- Add --shm-size=2gb to GitHub Actions container configuration
- Re-enable cbdb_parallel test suite
- Re-enable instr_in_shmem_verify test suite
---
.github/workflows/build-cloudberry.yml | 1 +
src/test/regress/greenplum_schedule | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build-cloudberry.yml
b/.github/workflows/build-cloudberry.yml
index a0ee80ea46..ecb19067d0 100644
--- a/.github/workflows/build-cloudberry.yml
+++ b/.github/workflows/build-cloudberry.yml
@@ -643,6 +643,7 @@ jobs:
options: >-
--user root
-h cdw
+ --shm-size=2gb
steps:
diff --git a/src/test/regress/greenplum_schedule
b/src/test/regress/greenplum_schedule
index e86eaab07d..dbc67d4944 100755
--- a/src/test/regress/greenplum_schedule
+++ b/src/test/regress/greenplum_schedule
@@ -258,7 +258,7 @@ test: ao_locks
test: freeze_aux_tables
# cbdb parallel test
-ignore: cbdb_parallel
+test: cbdb_parallel
# These cannot run in parallel, because they check that VACUUM FULL shrinks
table size.
# A concurrent session could hold back the xid horizon and prevent old tuples
from being
@@ -269,7 +269,7 @@ test: vacuum_full_heap
test: vacuum_full_heap_bitmapindex
test: vacuum_ao_aux_only
# Check for shmem leak for instrumentation slots
-ignore: instr_in_shmem_verify
+test: instr_in_shmem_verify
# check autostats
test: autostats
test: enable_autovacuum
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]