Skip to content

Commit 3ac59e0

Browse files
author
Release Manager
committed
gh-40788: fix an error in macos ci Uninstall cmake before installing dependencies. fix an error in https:// github.com/sagemath/sage/actions/runs/17527169455/job/49779204903 <!-- ^ 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". --> ### 📝 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: ... --> actions/runner-images#12912 URL: #40788 Reported by: Chenxin Zhong Reviewer(s): Chenxin Zhong, Copilot, Tobias Diez
2 parents 8f9e883 + 244d0e1 commit 3ac59e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252

5353
- name: Install dependencies
5454
run: |
55+
brew uninstall --force cmake || true
5556
eval $(build/bin/sage-print-system-package-command homebrew update)
5657
eval $(build/bin/sage-print-system-package-command homebrew --yes --ignore-missing install $(build/bin/sage-get-system-packages homebrew _bootstrap _prereq $(build/bin/sage-package list :standard:)))
5758
@@ -68,4 +69,3 @@ jobs:
6869
run: |
6970
source ./.homebrew-build-env # Needed so that runtime cython can find the dependencies
7071
./sage -t --all -p4
71-

0 commit comments

Comments
 (0)