update TracyAllocator for new Allocator changes (#812)

* update TracyAllocator for new Allocator changes

* Add build with Tracy to CI to catch regressions

* disable Tracy CI step on macos
This commit is contained in:
Lee Cannon
2022-12-08 19:32:50 +00:00
committed by GitHub
parent ddf3ef1389
commit 9e658cdbb6
2 changed files with 29 additions and 15 deletions

View File

@@ -22,7 +22,7 @@ jobs:
with:
fetch-depth: 0
submodules: true
- uses: goto-bus-stop/setup-zig@v1
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
@@ -32,6 +32,10 @@ jobs:
- name: Build
run: zig build
- name: Build with Tracy
if: ${{ matrix.os != 'macos-latest' }}
run: zig build -Denable_tracy -Denable_tracy_allocation
- name: Run Tests
run: zig build test