Skip to content

Commit

Permalink
Add build step to free disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalter committed Dec 1, 2022
1 parent 7130413 commit 5060300
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ jobs:
echo "::set-output name=changelog::$CHANGELOG"
echo "::set-output name=pluginVerifierHomeDir::~/.pluginVerifier"
./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier
# Free disk space
- name: Free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker rmi $(docker image ls -aq)
df -h
# Run tests
- name: Run Tests
run: ./gradlew test
Expand Down

0 comments on commit 5060300

Please sign in to comment.