Skip to content

Commit 748d138

Browse files
author
Release Manager
committed
sagemathgh-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 sagemath#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 sagemath#12345". --> Fixes sagemath#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, --> <!-- - sagemath#12345: short description why this is a dependency --> <!-- - sagemath#34567: ... --> URL: sagemath#41248 Reported by: Kwankyu Lee Reviewer(s): Chenxin Zhong, Kwankyu Lee, Vincent Macri
2 parents bbdfda0 + 3a859e5 commit 748d138

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
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/[email protected]
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/[email protected]
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/[email protected]
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

build/pkgs/configure/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=90e591299fb8d0abd1e286d4005892f8d75b287f
3-
sha256=8f67f1ebb4b1342c9b401af687db3df2467a81399c11619787957892f1588dcb
2+
sha1=1debf35100792d4163624a3ef3327971100c3f89
3+
sha256=a13d70734eb7fa57ebec4d9f48f9a527bb9af0e146a4701ea60e5e1ef1c15917
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bd193409ca35ad695bb473d19751be0a16d9e32f
1+
7c2b9603612ddb5b74eaaa64da4f5c9bd72b966b

0 commit comments

Comments
 (0)