From d230f30e841995bef1bf5ab28885e253c8b1bdb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Heusipp?= Date: Wed, 16 Oct 2024 20:36:09 +0000 Subject: [PATCH] [Reg] build: CI: GitHub: macOS: Remove macOS 12 because it is being phased out on GitHub. See r21845. git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.30@21847 56274372-70c3-4bfc-bfc3-4c3a0b034d27 --- .github/workflows/macOS-12-Makefile.yml | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/macOS-12-Makefile.yml diff --git a/.github/workflows/macOS-12-Makefile.yml b/.github/workflows/macOS-12-Makefile.yml deleted file mode 100644 index f081da2503c..00000000000 --- a/.github/workflows/macOS-12-Makefile.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: macOS 12 Makefile - -on: - push: - branches: [ OpenMPT-1.30 ] - -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - -jobs: - build: - - runs-on: macos-12 - - steps: - - uses: actions/checkout@v4 - - name: update Homebrew - run: brew update - - name: fixup GitHub Homebrew swiftlint breakage - run: brew pin swiftlint - - name: fixup GitHub Homebrew xcbeautify breakage - run: brew pin xcbeautify - - name: fixup GitHub Homebrew go breakage - run: brew unlink go@1.21 && brew unlink go && brew link --overwrite go - - name: fixup GitHub Homebrew node breakage - run: brew unlink node@18 && brew unlink node && brew link --overwrite node - - name: fixup GitHub Homebrew python breakage - run: brew unlink python@3.11 && brew unlink python@3.12 && brew link --overwrite python@3.11 && brew link --overwrite python@3.12 - - name: install dependencies - run: brew install p7zip help2man doxygen autoconf-archive mpg123 libogg libvorbis portaudio flac libsndfile sdl2 - - name: setup parallel make - run: echo "MAKEFLAGS=-j$(sysctl -n hw.ncpu)" >> $GITHUB_ENV - - name: make - run: make STRICT=1 FORCE_DEPS=1 - - name: make check - run: make STRICT=1 FORCE_DEPS=1 check