From 3affc89defaaae8e79ee67c10195f3ec6ab61a6b Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 6 Sep 2023 17:40:24 +0400 Subject: CI: Add profiling feature build --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 931c3618..679d3535 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,9 @@ jobs: - name: Build run: cargo build ${{ matrix.release-flag }} + - name: Build (with profiling) + run: cargo build ${{ matrix.release-flag }} --features profile-with-tracy + - name: Build Tests run: cargo test --no-run --all ${{ matrix.release-flag }} -- cgit