Skip to content

Commit 28ad4ef

Browse files
compheadalamb
andauthored
[branch-50] chore: Fix no space left on device (apache#18141)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes apache#18135 ## Rationale for this change <!-- Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed. Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes. --> ## What changes are included in this PR? <!-- There is no need to duplicate the description in the issue here but it is sometimes worth providing a summary of the individual changes in this PR. --> ## Are these changes tested? <!-- We typically require tests for all PRs in order to: 1. Prevent the code from being accidentally broken by subsequent changes 2. Serve as another way to document the expected behavior of the code If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? --> ## Are there any user-facing changes? <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. --> --------- Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
1 parent 226cb02 commit 28ad4ef

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,19 @@ jobs:
347347
with:
348348
save-if: ${{ github.ref_name == 'main' }}
349349
shared-key: "amd-ci-linux-test-example"
350+
- name: Remove unnecessary preinstalled software
351+
run: |
352+
echo "Disk space before cleanup:"
353+
df -h
354+
apt-get clean
355+
rm -rf /__t/CodeQL
356+
rm -rf /__t/PyPy
357+
rm -rf /__t/Java_Temurin-Hotspot_jdk
358+
rm -rf /__t/Python
359+
rm -rf /__t/go
360+
rm -rf /__t/Ruby
361+
echo "Disk space after cleanup:"
362+
df -h
350363
- name: Run examples
351364
run: |
352365
# test datafusion-sql examples

0 commit comments

Comments
 (0)