Skip to content

Commit

Permalink
fix: enabled calltree profiling in CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Jul 2, 2024
1 parent 994f1ff commit 33c3805
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ jobs:
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake \
-DCMAKE_BUILD_TYPE=Debug \
-DDP_CALLTREE_PROFILING=1 \
..
make -j3
- name: C++ unit tests
Expand Down Expand Up @@ -146,7 +149,10 @@ jobs:
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake \
-DCMAKE_BUILD_TYPE=Debug \
-DDP_CALLTREE_PROFILING=1 \
..
make -j3
- name: Python end-to-end-tests
Expand Down

0 comments on commit 33c3805

Please sign in to comment.