From: <sv...@op...> - 2024-11-02 14:37:51
|
Author: manx Date: Sat Nov 2 15:37:39 2024 New Revision: 22076 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22076 Log: [Fix] build: CI: GitHub: macOS: Upgrading packages was accidentally removed in r21845. 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 Nov 2 14:43:14 2024 (r22075) +++ trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Sat Nov 2 15:37:39 2024 (r22076) @@ -30,6 +30,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: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Sat Nov 2 14:43:14 2024 (r22075) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Sat Nov 2 15:37:39 2024 (r22076) @@ -84,6 +84,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 |