From: <sv...@op...> - 2024-11-27 14:00:02
|
Author: manx Date: Wed Nov 27 14:59:55 2024 New Revision: 22323 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22323 Log: [Fix] build: CI: GitHub: macOS: Remove work-around for Homebrew unxip breakage on macOS 13. Modified: trunk/OpenMPT/.github/workflows/macOS-Autotools.yml trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/macOS-Autotools.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Wed Nov 27 13:47:50 2024 (r22322) +++ trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Wed Nov 27 14:59:55 2024 (r22323) @@ -28,9 +28,6 @@ - uses: actions/checkout@v4 - name: update Homebrew run: brew update - - name: fixup GitHub Homebrew unxip breakage - if: ${{ matrix.host == 'macos-13' }} - run: brew pin unxip - name: fixup GitHub Homebrew python breakage if: ${{ matrix.host == 'macos-13' }} run: brew unlink python@3.12 && brew link --overwrite python@3.12 Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Wed Nov 27 13:47:50 2024 (r22322) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Wed Nov 27 14:59:55 2024 (r22323) @@ -103,9 +103,6 @@ - uses: actions/checkout@v4 - name: update Homebrew run: brew update - - name: fixup GitHub Homebrew unxip breakage - if: ${{ matrix.host == 'macos-13' }} - run: brew pin unxip - name: fixup GitHub Homebrew python breakage if: ${{ matrix.host == 'macos-13' }} run: brew unlink python@3.12 && brew link --overwrite python@3.12 |