diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d833fc..ff19da8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,21 @@ concurrency: jobs: + free-disk-space: + runs-on: ubuntu-latest + steps: + + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + # Prepare environment and build the plugin build: name: Build @@ -211,6 +226,10 @@ jobs: path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} + # check disk space + - name: Check Diskspace + run: du -h / + # Run Verify Plugin task and IntelliJ Plugin Verifier tool - name: Run Plugin Verification tasks run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}