mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-31 18:20:01 -06:00
23 lines
652 B
YAML
23 lines
652 B
YAML
name: build-macos
|
|
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
build-macos:
|
|
strategy:
|
|
matrix:
|
|
arch: [x86_64, arm64]
|
|
|
|
name: macOS ${{ matrix.arch }}
|
|
runs-on: macos-13
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: |
|
|
brew install autoconf automake autoconf-archive libtool && pip3 install setuptools
|
|
- uses: lukka/get-cmake@latest
|
|
- uses: lukka/run-vcpkg@v11
|
|
with:
|
|
vcpkgGitCommitId: c8696863d371ab7f46e213d8f5ca923c4aef2a00
|
|
- uses: lukka/run-cmake@v10
|
|
with:
|
|
configurePreset: release-mac-${{ matrix.arch }}
|
|
buildPreset: release-mac-${{ matrix.arch }} |