Skip to content

Commit fd1cc34

Browse files
committed
Add macos build action
1 parent 37c1df5 commit fd1cc34

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: compile_macos
2+
3+
on: [push]
4+
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7+
cancel-in-progress: true
8+
9+
jobs:
10+
build:
11+
runs-on: macos-14
12+
13+
steps:
14+
- name: Install Packages
15+
run: |
16+
brew install boost fmt jq zeromq googletest
17+
18+
# tyndall
19+
- uses: actions/checkout@v2
20+
with:
21+
path: tyndall
22+
lfs: true
23+
- name: Build
24+
run: cd $GITHUB_WORKSPACE/tyndall && mkdir build && cd build && cmake .. && make all

0 commit comments

Comments
 (0)