From 6e4c5897ffd71d22beb4edc84b3a4b4dfe3721a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BAben=20Sousa?= Date: Wed, 18 Sep 2024 01:27:48 +0200 Subject: [PATCH] Add free disk space --- .github/workflows/pr.yml | 6 ++++-- .github/workflows/push.yml | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 27705936..39a67964 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -76,8 +76,10 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - - name: Compile instrumented tests - run: ./gradlew --build-cache assembleDebugAndroidTest + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + android: false # Retrieve the cached emulator snapshot. - name: AVD cache diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index e9415685..b9dc8e9d 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -55,6 +55,11 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + android: false + # Retrieve the cached emulator snapshot. - name: AVD cache uses: actions/cache@v4