We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21de662 commit 2f04023Copy full SHA for 2f04023
.github/workflows/macos-15.yml
@@ -0,0 +1,17 @@
1
+name: MacOS CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
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
@@ -13,5 +13,7 @@ jobs:
- uses: actions/checkout@v2
- name: make
run: |
- brew install autoconf automake boost llvm libomp
+ brew install boost htslib
+ 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'
19
make
0 commit comments