Skip to content

Commit

Permalink
Listing large files in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Dec 4, 2024
1 parent 0e256ec commit b16e5e5
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ jobs:
- name: Clean up log files
run: find /home/runner/runners/ -type f -name "*.log" -exec sh -c 'echo {}; >"{}"' \;

- name: Clean up Docker volume
run: docker volume rm flowcept_mongo_data

- name: Start docker compose with kafka
run: docker compose -f deployment/compose-kafka.yml up -d

Expand All @@ -114,5 +111,5 @@ jobs:
- name: Clean up log files again
run: find /home/runner/runners/ -type f -name "*.log" -exec sh -c 'echo {}; >"{}"' \;

- name: Clean up Docker volume
run: docker volume rm flowcept_mongo_data
- name: List large files
run: find . -type f -exec du -h {} + | sort -h

0 comments on commit b16e5e5

Please sign in to comment.