Skip to content

Commit 85e1638

Browse files
author
Release Manager
committed
gh-41248: Fix no-space-left failures in doc-build workflow <!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes #12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes #12345". --> Fixes #40929 Test: https://github.com/kwankyu/sage/actions/runs/19849361332/job/56872883527 ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] 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 and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #41248 Reported by: Kwankyu Lee Reviewer(s): Chenxin Zhong, Kwankyu Lee, Vincent Macri
2 parents bbdfda0 + 3a859e5 commit 85e1638

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.github/workflows/doc-build-livedoc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ jobs:
2222
- name: Checkout
2323
uses: actions/checkout@v4
2424

25+
- name: Maximize available disk space
26+
uses: jlumbroso/free-disk-space@v1.3.1
27+
with:
28+
# Remove pre-installed packages like Docker, Android, .NET, etc.
29+
# We only keep the basic essentials (like compilers, etc.)
30+
tool-cache: true
31+
2532
- name: Cache conda packages
2633
uses: actions/cache@v4
2734
with:

.github/workflows/doc-build-pdf.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v4
2626

27+
- name: Maximize available disk space
28+
uses: jlumbroso/free-disk-space@v1.3.1
29+
with:
30+
# Remove pre-installed packages like Docker, Android, .NET, etc.
31+
# We only keep the basic essentials (like compilers, etc.)
32+
tool-cache: true
33+
2734
- name: Merge CI fixes from sagemath/sage
2835
run: |
2936
.github/workflows/merge-fixes.sh

.github/workflows/doc-build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v4
2626

27+
- name: Maximize available disk space
28+
uses: jlumbroso/free-disk-space@v1.3.1
29+
with:
30+
# Remove pre-installed packages like Docker, Android, .NET, etc.
31+
# We only keep the basic essentials (like compilers, etc.)
32+
tool-cache: true
33+
2734
- name: Merge CI fixes from sagemath/sage
2835
run: |
2936
.github/workflows/merge-fixes.sh

0 commit comments

Comments
 (0)