-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance: [skip e2e]Maximize build space at the begin (#30562)
pr: #30540 Signed-off-by: Sammy Huang <[email protected]>
- Loading branch information
1 parent
8fec7de
commit e1fb4f6
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@master | ||
if: ${{ ! startsWith(runner.name, 'self') }} # skip this step if it is self-hosted runner | ||
with: | ||
root-reserve-mb: 20480 | ||
swap-size-mb: 1024 | ||
remove-dotnet: 'true' | ||
remove-android: 'true' | ||
remove-haskell: 'true' | ||
- name: Download code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -139,6 +148,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@master | ||
if: ${{ ! startsWith(runner.name, 'self') }} # skip this step if it is self-hosted runner | ||
with: | ||
root-reserve-mb: 20480 | ||
swap-size-mb: 1024 | ||
remove-dotnet: 'true' | ||
remove-android: 'true' | ||
remove-haskell: 'true' | ||
- name: Download code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -178,6 +196,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@master | ||
if: ${{ ! startsWith(runner.name, 'self') }} # skip this step if it is self-hosted runner | ||
with: | ||
root-reserve-mb: 20480 | ||
swap-size-mb: 1024 | ||
remove-dotnet: 'true' | ||
remove-android: 'true' | ||
remove-haskell: 'true' | ||
- name: Download code | ||
uses: actions/[email protected] | ||
with: | ||
|