From: <sv...@op...> - 2024-08-17 16:59:35
|
Author: manx Date: Sat Aug 17 18:59:28 2024 New Revision: 21508 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21508 Log: [Fix] build: CI: GitHub: macOS: Work-around Homebrew non-dependency-handling. Pin swiftlint. 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 Sat Aug 17 17:53:40 2024 (r21507) +++ trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Sat Aug 17 18:59:28 2024 (r21508) @@ -24,6 +24,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: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Sat Aug 17 17:53:40 2024 (r21507) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Sat Aug 17 18:59:28 2024 (r21508) @@ -57,6 +57,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 |