Temporarily disable GNS on MSVC #929
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-14 | |
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 cogapp generate-iconset | |
brew install openal-soft sdl2 sdl2_mixer glew libmodplug libpng | |
brew install [email protected] protobuf | |
- name: cmake | |
run: export HOMEBREW_PREFIX="/usr/local" && ./.github/build_macos.sh |