-
Notifications
You must be signed in to change notification settings - Fork 1.2k
fix: ci #3204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: ci #3204
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -170,24 +170,12 @@ jobs: | |
|
|
||
| - name: Extreme Disk Cleanup | ||
| run: | | ||
|
|
||
| rm -rf /usr/local/share/* || true | ||
| rm -rf /usr/share/doc/* || true | ||
| rm -rf /usr/share/man/* || true | ||
| rm -rf /var/cache/* || true | ||
|
|
||
| find ${{ github.workspace }} -name "*.o" -type f -delete || true | ||
| find ${{ github.workspace }} -name "*.a" -type f -delete || true | ||
| find ${{ github.workspace }} -name "*.la" -type f -delete || true | ||
| find ${{ github.workspace }} -name "*.so" -type f -delete || true | ||
| find ${{ github.workspace }} -name "*.pyc" -type f -delete || true | ||
|
|
||
| rm -rf ${{ github.workspace }}/.git || true | ||
|
|
||
| rm -rf /__w/pikiwidb/pikiwidb/buildtrees 2>/dev/null || true | ||
| rm -rf /__w/pikiwidb/pikiwidb/deps 2>/dev/null || true | ||
| find /__w/pikiwidb/pikiwidb -type f \( -name "librocksdb.a" -o -name "libprotoc.a" -o -name "libprotobuf.a" \) -delete 2>/dev/null || true | ||
| find /__w/pikiwidb/pikiwidb -type f \( -name "*.o" -o -name "*.a" -o -name "*.la" -o -name "*.so" -o -name "*_test" \) ! -path "*/build/pika" -delete 2>/dev/null || true | ||
| rm -rf /__w/pikiwidb/pikiwidb/.git 2>/dev/null || true | ||
|
Comment on lines
+173
to
+177
|
||
| df -h | ||
|
|
||
| echo "Largest directories:" | ||
| du -h --max-depth=2 / 2>/dev/null | sort -hr | head -20 | ||
|
|
||
| - name: Create Log Directories | ||
| run: | | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing whitespace detected after
|| true. Consider removing it for consistency with YAML formatting standards.