This is an automated email from the ASF dual-hosted git repository. abhi pushed a commit to branch ranger_4951 in repository https://gitbox.apache.org/repos/asf/ranger.git
commit 0f6e73eb62b767b72de40f3bc62a48daa84818cc Author: Abhishek Kumar <[email protected]> AuthorDate: Fri Oct 11 18:30:28 2024 -0700 RANGER-4951: Prune docker cache before docker-build --- .github/workflows/maven.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4e73160e6..3ddb1a277 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -97,6 +97,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
