Skip to content

Function Facilities Update #10

Function Facilities Update

Function Facilities Update #10

Workflow file for this run

name: macOS Build
on:
push:
branches: [ "v0.x" ]
pull_request:
branches: [ "v0.x" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# Set fail-fast to false to ensure that feedback is delivered for all matrix
# combinations. Consider changing this to true when your workflow is stable.
fail-fast: false
matrix:
cmake_preset: ["macos-x64-clang-debug", "macos-x64-clang-release"]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Configure macOS CMake Preset
run: cmake --preset ${{ matrix.cmake_preset }}
shell: bash
- name: Build macOS CMake Preset
run: cmake --build --preset ${{ matrix.cmake_preset }}
shell: bash