mirror of
https://github.com/visualboyadvance-m/visualboyadvance-m
synced 2025-10-05 23:52:49 +02:00
ci: add basic macos-latest runner
Add basic macos-latest build to have one macOS runner. Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
23
.github/workflows/macos-build.yml
vendored
Normal file
23
.github/workflows/macos-build.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: macOS Latest Build
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Dependencies
|
||||
run: >-
|
||||
bash installdeps
|
||||
|
||||
- name: Configure
|
||||
run: >-
|
||||
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
|
||||
|
||||
- name: Build
|
||||
run: ninja -C build
|
Reference in New Issue
Block a user