Skip to content

Commit

Permalink
Fix disk cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Dec 24, 2024
1 parent a183502 commit 4ae3c76
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ jobs:

- uses: gradle/wrapper-validation-action@v1

# Cleanup directories before proceeding with setup
- name: Clean up old installations
if: ${{ matrix.os != 'windows-latest' }}
run: |
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
- uses: ./.github/actions/patch-dependencies
with:
run_tests: "true"
Expand Down Expand Up @@ -70,6 +63,13 @@ jobs:

- uses: gradle/wrapper-validation-action@v1

# Cleanup directories before proceeding with setup
- name: Clean up old installations
if: ${{ matrix.os != 'windows-latest' }}
run: |
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
# cache local patch outputs
- name: Cache local Maven repository
uses: actions/cache@v3
Expand Down

0 comments on commit 4ae3c76

Please sign in to comment.