Skip to content

Commit b3966d8

Browse files
committed
v0.8.0
1 parent 6073391 commit b3966d8

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/macosx.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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-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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace tracy
55
{
66

77

8-
std::string tracyVersionNumber = "0.7.8";
8+
std::string tracyVersionNumber = "0.8.0";
99

1010
inline
1111
void printTitle(std::string const& title)

0 commit comments

Comments
 (0)