From: <sv...@op...> - 2024-12-08 10:29:52
|
Author: manx Date: Sun Dec 8 11:29:40 2024 New Revision: 22485 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22485 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.28/ (props changed) branches/OpenMPT-1.28/.github/workflows/macOS-13-Makefile.yml Modified: branches/OpenMPT-1.28/.github/workflows/macOS-13-Makefile.yml ============================================================================== --- branches/OpenMPT-1.28/.github/workflows/macOS-13-Makefile.yml Sun Dec 8 11:29:21 2024 (r22484) +++ branches/OpenMPT-1.28/.github/workflows/macOS-13-Makefile.yml Sun Dec 8 11:29:40 2024 (r22485) @@ -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 |