This is an automated email from the ASF dual-hosted git repository. tuhaihe pushed a commit to branch REL_2_STABLE in repository https://gitbox.apache.org/repos/asf/cloudberry-backup.git
commit bd135816570d10cf25ca660f8b13ae887475744b Author: Dianjin Wang <[email protected]> AuthorDate: Wed Sep 23 10:20:59 2026 +0800 Extend binary file extension check with deb, rpm, gppkg and bin The CI binary-file check explicitly scans a fixed list of extensions to keep compiled or packaged artifacts out of the source tree. Add deb, rpm, gppkg and bin so packaged binaries and Greenplum package files are caught as well. --- .github/workflows/apache-rat-audit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/apache-rat-audit.yml b/.github/workflows/apache-rat-audit.yml index 8a251c11..2c45eb13 100644 --- a/.github/workflows/apache-rat-audit.yml +++ b/.github/workflows/apache-rat-audit.yml @@ -106,7 +106,7 @@ jobs: - name: Check for binary files run: | echo "Checking for binary files..." - echo "Checking extensions: class, jar, tar, tgz, zip, exe, dll, so, gz, bz2" + echo "Checking extensions: class, jar, tar, tgz, zip, exe, dll, so, gz, bz2, deb, rpm, gppkg, bin" echo "----------------------------------------------------------------------" # Binary file allowlist, see README.apache.md @@ -139,7 +139,7 @@ jobs: ) # Check for specific binary file extensions - binary_extensions="class jar tar tgz zip exe dll so gz bz2" + binary_extensions="class jar tar tgz zip exe dll so gz bz2 deb rpm gppkg bin" echo "BINARY_EXTENSIONS=${binary_extensions}" >> $GITHUB_ENV binary_results="" binaryfiles_found=false --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
