Fix MinGW building #949
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS SDL2 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
name: Checkout | |
- name: Install Packages | |
run: | | |
set -e | |
brew unlink python3 | |
brew upgrade && brew install --overwrite python3 | |
brew install cmake make imagemagick | |
pip3 install --break-system-packages cogapp generate-iconset | |
brew install openal-soft sdl2 sdl2_mixer glew libmodplug libpng | |
brew install openssl@3 protobuf | |
- name: cmake | |
run: export HOMEBREW_PREFIX="/usr/local" && ./.github/build_macos.sh |