Skip to content

Commit 500e8f5

Browse files
committed
fix(ci): point benchmark step to binary
Ensure the Linux workflow runs the built logit_bench executable from the build directory so the step no longer fails with a missing file.
1 parent d22d791 commit 500e8f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: cmake --build build-bench --target logit_bench
3434
- name: Run latency benchmarks
3535
if: ${{ github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/stable') }}
36-
run: ./build-bench/bench/logit_bench
36+
run: ./build-bench/logit_bench
3737
- name: Configure consumer project
3838
run: cmake -S tests/install_consumer -B build-consumer -DCMAKE_PREFIX_PATH=${{ github.workspace }}/install -DCMAKE_CXX_STANDARD=${{ matrix.std }}
3939
- name: Build consumer project

0 commit comments

Comments
 (0)