Skip to content

Add macos build action #1

Add macos build action

Add macos build action #1

Workflow file for this run

name: compile_macos
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-14
steps:
- name: Install Packages
run: |
brew install boost fmt jq zeromq googletest
# tyndall
- uses: actions/checkout@v2
with:
path: tyndall
lfs: true
- name: Build
run: cd $GITHUB_WORKSPACE/tyndall && mkdir build && cd build && cmake .. && make all