Files
eepp/.github/workflows/eepp-macos-build-check.yml
Martín Lucas Golini cec4fa6e72 Add webp image format support (load and save).
Fix bug introduced in the last commit for UIDataBind initialization.
Change gmake2 in favor of gmake when using premake5 since it has been depreated in premake5-beta6 (hopefully I did not miss anything).
2025-06-04 21:02:38 -03:00

29 lines
637 B
YAML

name: macOS
on: [push, pull_request]
jobs:
MacOS:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
fetch-depth: 2
- name: Checkout submodules
run: |
git submodule update --init --recursive
- name: Install dependencies
run: |
brew install wget SDL2 premake
- name: Build
run: |
premake5 --with-text-shaper --disable-static-build gmake
make -C make/macosx/ -e config=release_arm64
- name: Unit Tests
run: |
cd bin/unit_tests
./eepp-unit_tests