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:
parent
2985b46926
commit
d23b374fbf
|
@ -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
|
Loading…
Reference in New Issue