Skip to content

Commit

Permalink
control disk-space
Browse files Browse the repository at this point in the history
  • Loading branch information
hauner committed Nov 12, 2024
1 parent 5018f7d commit 9ed6406
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 9ed6406

Please sign in to comment.