This is an automated email from the ASF dual-hosted git repository. espino pushed a commit to branch main-debugging in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit a55fea20e287571a7cd92ff14ba5c4dd3ab6f36a Author: Ed Espino <[email protected]> AuthorDate: Sat Oct 4 13:53:13 2025 -0700 Preserve .so files during disk cleanup Keep shared library files in source tree during cleanup as they may be needed by tests. This reduces cleanup savings by ~50-200MB but ensures test stability. --- .github/workflows/build-cloudberry.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-cloudberry.yml b/.github/workflows/build-cloudberry.yml index c7ad787ab67..6dabf52d6b4 100644 --- a/.github/workflows/build-cloudberry.yml +++ b/.github/workflows/build-cloudberry.yml @@ -1287,7 +1287,6 @@ jobs: # Remove compiled object files and libraries from source tree (~100-500MB) echo "Removing object files and libraries from source tree..." find /__w/cloudberry/cloudberry -name "*.o" -type f -delete 2>/dev/null || true - find /__w/cloudberry/cloudberry -name "*.so" -type f -delete 2>/dev/null || true # Remove git repository (~66MB) - tests run from extracted tarball, not git checkout rm -rf /__w/cloudberry/cloudberry/.git --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
