From: <sv...@op...> - 2024-03-13 10:15:02
|
Author: manx Date: Wed Mar 13 11:14:45 2024 New Revision: 20313 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20313 Log: [Fix] build: CI: GitHub: macOS: Work-around macos-12 Homebrew breakage. Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Tue Mar 12 20:14:31 2024 (r20312) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Wed Mar 13 11:14:45 2024 (r20313) @@ -43,6 +43,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 |