We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6073391 commit b3966d8Copy full SHA for b3966d8
.github/workflows/macosx.yml
@@ -0,0 +1,19 @@
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-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: make
15
+ run: |
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'
19
+ make
src/version.h
@@ -5,7 +5,7 @@ namespace tracy
{
- std::string tracyVersionNumber = "0.7.8";
+ std::string tracyVersionNumber = "0.8.0";
inline
void printTitle(std::string const& title)
0 commit comments