This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch ranger-2.6 in repository https://gitbox.apache.org/repos/asf/ranger.git
commit c16dd8aaa8bf8cfe52ca3e13bc91980a27452b2d Author: Abhishek Kumar <[email protected]> AuthorDate: Sun Oct 13 23:02:16 2024 -0700 RANGER-4951: Prune docker cache before docker-build (#404) (cherry picked from commit 8d89c91360b619071cf347745f766c963da58f7d) --- .github/workflows/maven.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e8d3191e6..7aa7d6e52 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -92,6 +92,9 @@ jobs: cd dev-support/ranger-docker ./download-archives.sh hadoop hive hbase kafka knox ozone + - name: Clean up Docker space + run: docker system prune --all --force --volumes + - name: Build all ranger-service images run: | cd dev-support/ranger-docker
