Files
eepp/.github/workflows/eepp-macos-build-check.yml
Martín Lucas Golini b3cd551ff4 More improvements.
2024-06-13 02:20:23 -03:00

29 lines
615 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 gmake2
make -C make/macosx/ -e config=release_arm64
- name: Unit Tests
run: |
cd bin/unit_tests
./eepp-unit_tests