wip #164
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-build | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
macos-build: | |
name: build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install ffmpeg and ssl | |
env: | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
run: | | |
brew update | |
brew install --overwrite [email protected] | |
brew install --overwrite pkg-config meson ninja cmake sdl2 sdl2_ttf freetype2 ffmpeg | |
- name: Meson build | |
uses: BSFishy/[email protected] | |
with: | |
action: build | |
- name: Save logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macos-build-logs | |
path: build/meson-logs |