From: <sv...@op...> - 2024-12-08 10:29:35
|
Author: manx Date: Sun Dec 8 11:29:21 2024 New Revision: 22484 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22484 Log: Merged revision(s) 22483 from branches/OpenMPT-1.30: [Fix] build: CI: GitHub: macOS: Try to work-around Homebrew python breakage on macOS 13. See r22481. ........ Modified: branches/OpenMPT-1.29/ (props changed) branches/OpenMPT-1.29/.github/workflows/macOS-13-Makefile.yml Modified: branches/OpenMPT-1.29/.github/workflows/macOS-13-Makefile.yml ============================================================================== --- branches/OpenMPT-1.29/.github/workflows/macOS-13-Makefile.yml Sun Dec 8 11:29:00 2024 (r22483) +++ branches/OpenMPT-1.29/.github/workflows/macOS-13-Makefile.yml Sun Dec 8 11:29:21 2024 (r22484) @@ -18,7 +18,7 @@ - name: update Homebrew run: brew update - name: fixup GitHub Homebrew python breakage - run: brew unlink python@3.12 && brew link --overwrite python@3.12 + run: brew unlink python@3.12 && brew unlink python@3.13 && brew link --overwrite python@3.12 && brew link --overwrite python@3.13 - name: upgrade packages run: brew upgrade - name: install dependencies |