From: <sv...@op...> - 2024-11-02 14:38:18
|
Author: manx Date: Sat Nov 2 15:38:06 2024 New Revision: 22077 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22077 Log: Merged revision(s) 22076 from trunk/OpenMPT: [Fix] build: CI: GitHub: macOS: Upgrading packages was accidentally removed in r21845. ........ 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 Nov 2 15:37:39 2024 (r22076) +++ branches/OpenMPT-1.31/.github/workflows/macOS-Autotools.yml Sat Nov 2 15:38:06 2024 (r22077) @@ -28,6 +28,8 @@ - name: fixup GitHub Homebrew python breakage if: ${{ matrix.host == 'macos-13' }} run: brew unlink python@3.11 && brew unlink python@3.12 && brew link --overwrite python@3.11 && brew link --overwrite python@3.12 + - name: upgrade packages + run: brew upgrade - name: install dependencies run: brew install p7zip help2man doxygen autoconf autoconf-archive automake libtool mpg123 libogg libvorbis portaudio flac libsndfile sdl2 - name: selecting Xcode version Modified: branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml ============================================================================== --- branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Sat Nov 2 15:37:39 2024 (r22076) +++ branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Sat Nov 2 15:38:06 2024 (r22077) @@ -82,6 +82,8 @@ - name: fixup GitHub Homebrew python breakage if: ${{ matrix.host == 'macos-13' }} run: brew unlink python@3.11 && brew unlink python@3.12 && brew link --overwrite python@3.11 && brew link --overwrite python@3.12 + - name: upgrade packages + run: brew upgrade - name: install dependencies run: brew install p7zip help2man doxygen autoconf autoconf-archive automake libtool mpg123 libogg libvorbis portaudio flac libsndfile sdl2 - name: selecting Xcode version |