From d23b374fbfb93f4ae3d0e211f63d07bacd3d99bd Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Sun, 16 Oct 2022 18:22:37 +0000 Subject: [PATCH] ci: add basic macos-latest runner Add basic macos-latest build to have one macOS runner. Signed-off-by: Rafael Kitover --- .github/workflows/macos-build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/macos-build.yml diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml new file mode 100644 index 00000000..5d27d520 --- /dev/null +++ b/.github/workflows/macos-build.yml @@ -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