mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-04 22:01:54 +00:00
Fix "No space left on device" in build job (#482)
This commit is contained in:
parent
a1b47a36de
commit
2430382824
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
@ -35,6 +35,13 @@ jobs:
|
||||
changelog: ${{ steps.properties.outputs.changelog }}
|
||||
steps:
|
||||
|
||||
# Free GitHub Actions Environment Disk Space
|
||||
- name: Maximize Build Space
|
||||
uses: jlumbroso/free-disk-space@v1.3.1
|
||||
with:
|
||||
tool-cache: false
|
||||
large-packages: false
|
||||
|
||||
# Check out the current repository
|
||||
- name: Fetch Sources
|
||||
uses: actions/checkout@v4
|
||||
@ -93,6 +100,13 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
# Free GitHub Actions Environment Disk Space
|
||||
- name: Maximize Build Space
|
||||
uses: jlumbroso/free-disk-space@v1.3.1
|
||||
with:
|
||||
tool-cache: false
|
||||
large-packages: false
|
||||
|
||||
# Check out the current repository
|
||||
- name: Fetch Sources
|
||||
uses: actions/checkout@v4
|
||||
|
||||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -18,6 +18,13 @@ jobs:
|
||||
pull-requests: write
|
||||
steps:
|
||||
|
||||
# Free GitHub Actions Environment Disk Space
|
||||
- name: Maximize Build Space
|
||||
uses: jlumbroso/free-disk-space@v1.3.1
|
||||
with:
|
||||
tool-cache: false
|
||||
large-packages: false
|
||||
|
||||
# Check out the current repository
|
||||
- name: Fetch Sources
|
||||
uses: actions/checkout@v4
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
### Added
|
||||
|
||||
- GitHub Actions: set Gradle cache to read-only for non-build jobs
|
||||
- GitHub Actions: add `jlumbroso/free-disk-space` action to build related steps to maximize build environment storage
|
||||
- Added `.kotlin` directory to `.gitignore` for Kotlin 2.0
|
||||
|
||||
### Removed
|
||||
|
||||
Loading…
Reference in New Issue
Block a user