Author: manx
Date: Wed Mar 13 12:20:52 2024
New Revision: 20314
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20314
Log:
Merged revision(s) 20313 from trunk/OpenMPT:
[Fix] build: CI: GitHub: macOS: Work-around macos-12 Homebrew breakage.
........
Modified:
branches/OpenMPT-1.31/ (props changed)
branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml
Modified: branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml
==============================================================================
--- branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Wed Mar 13 11:14:45 2024 (r20313)
+++ branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Wed Mar 13 12:20:52 2024 (r20314)
@@ -41,6 +41,9 @@
runs-on: ${{matrix.host}}
steps:
- uses: actions/checkout@v4
+ - name: fixup GitHub Homebrew xcbeautify breakage
+ if: ${{ matrix.host == 'macos-12' }}
+ run: brew pin xcbeautify
- name: fixup GitHub Homebrew node breakage
if: ${{ matrix.host == 'macos-12' }}
run: brew unlink node@18 && brew unlink node && brew link --overwrite node
|