Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ jobs:
mv version dev-support/ranger-docker/dist
rm -f ranger-*.tar.gz # clean up workspace

- name: Check disk space
run: df -h

- name: Free up disk space
run: docker system prune --all --force --volumes

Expand Down Expand Up @@ -224,6 +227,13 @@ jobs:
-f docker-compose.ranger-knox.yml \
-f docker-compose.ranger-ozone.yml build

- name: Remove downloaded tarballs
run: |
cd dev-support/ranger-docker
rm -f downloads/hadoop-*
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wouldn't this result in download of these tar balls in every CI run?

rm -f downloads/apache-hive-*
rm -f downloads/apache-atlas-*

- name: Bring up ranger-plugin containers
run: |
cd dev-support/ranger-docker
Expand Down
Loading