Skip to content

Commit 2fd33b9

Browse files
author
Release Manager
committed
gh-37252: CI: Fix for failure in maximize-build-space <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes #1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> See easimon/maximize-build-space#39 <!-- Why is this change required? What problem does it solve? --> <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #37252 Reported by: Matthias Köppe Reviewer(s): Sebastian Oehms
2 parents 1cd7585 + ea5003b commit 2fd33b9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,16 @@ jobs:
152152
EXTRA_SAGE_PACKAGES: ${{ inputs.extra_sage_packages }}
153153
steps:
154154
- name: Maximize build disk space
155-
uses: easimon/maximize-build-space@v8
155+
uses: easimon/maximize-build-space@v10
156156
with:
157157
# need space in /var for Docker images
158-
root-reserve-mb: 40000
158+
root-reserve-mb: 30000
159159
remove-dotnet: true
160160
remove-android: true
161161
remove-haskell: true
162162
remove-codeql: true
163163
remove-docker-images: true
164+
continue-on-error: true
164165
if: inputs.free_disk_space
165166
- name: Check out SageMath
166167
uses: actions/checkout@v4

.github/workflows/docker_hub.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Maximize build disk space
19-
uses: easimon/maximize-build-space@v8
19+
uses: easimon/maximize-build-space@v10
2020
with:
2121
# need space in /var for Docker images
22-
root-reserve-mb: 40000
22+
root-reserve-mb: 30000
2323
remove-dotnet: true
2424
remove-android: true
2525
remove-haskell: true
2626
remove-codeql: true
2727
remove-docker-images: true
28+
continue-on-error: true
2829

2930
- name: Checkout
3031
uses: actions/checkout@v4

0 commit comments

Comments
 (0)