mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 06:11:52 +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 }}
|
changelog: ${{ steps.properties.outputs.changelog }}
|
||||||
steps:
|
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
|
# Check out the current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -93,6 +100,13 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
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
|
# Check out the current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -18,6 +18,13 @@ jobs:
|
|||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
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
|
# Check out the current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
@ -7,6 +7,7 @@
|
|||||||
### Added
|
### Added
|
||||||
|
|
||||||
- GitHub Actions: set Gradle cache to read-only for non-build jobs
|
- 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
|
- Added `.kotlin` directory to `.gitignore` for Kotlin 2.0
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user