Skip to content

Commit 2f04023

Browse files
committed
macos15
1 parent 21de662 commit 2f04023

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/macos-15.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: MacOS CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: macos-15
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: make
15+
run: |
16+
brew install autoconf automake boost llvm libomp
17+
make

.github/workflows/macosx.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- name: make
1515
run: |
16-
brew install autoconf automake boost llvm libomp
16+
brew install boost htslib
17+
export CXXFLAGS='-I/opt/homebrew/opt/boost/include -I/opt/homebrew/opt/htslib/include'
18+
export LDFLAGS='-L/opt/homebrew/opt/boost/lib -L/opt/homebrew/opt/htslib/lib'
1719
make

0 commit comments

Comments
 (0)