From: <sv...@op...> - 2024-08-17 17:00:02
|
Author: manx Date: Sat Aug 17 18:59:49 2024 New Revision: 21509 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21509 Log: Merged revision(s) 21508 from trunk/OpenMPT: [Fix] build: CI: GitHub: macOS: Work-around Homebrew non-dependency-handling. Pin swiftlint. ........ Modified: branches/OpenMPT-1.31/ (props changed) branches/OpenMPT-1.31/.github/workflows/macOS-Autotools.yml branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Modified: branches/OpenMPT-1.31/.github/workflows/macOS-Autotools.yml ============================================================================== --- branches/OpenMPT-1.31/.github/workflows/macOS-Autotools.yml Sat Aug 17 18:59:28 2024 (r21508) +++ branches/OpenMPT-1.31/.github/workflows/macOS-Autotools.yml Sat Aug 17 18:59:49 2024 (r21509) @@ -22,6 +22,9 @@ runs-on: ${{matrix.host}} steps: - uses: actions/checkout@v4 + - name: fixup GitHub Homebrew swiftlint breakage + if: ${{ matrix.host == 'macos-12' }} + run: brew pin swiftlint - name: fixup GitHub Homebrew xcbeautify breakage if: ${{ matrix.host == 'macos-12' }} run: brew pin xcbeautify Modified: branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml ============================================================================== --- branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Sat Aug 17 18:59:28 2024 (r21508) +++ branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Sat Aug 17 18:59:49 2024 (r21509) @@ -55,6 +55,9 @@ runs-on: ${{matrix.host}} steps: - uses: actions/checkout@v4 + - name: fixup GitHub Homebrew swiftlint breakage + if: ${{ matrix.host == 'macos-12' }} + run: brew pin swiftlint - name: fixup GitHub Homebrew xcbeautify breakage if: ${{ matrix.host == 'macos-12' }} run: brew pin xcbeautify |