Skip to content

Commit

Permalink
Don't run client_stack benchmark on Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneider-bensch committed Jan 16, 2025
1 parent 3510962 commit c3f6232
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Benchmark
run: cargo bench --bench client --bench server
if: ${{ matrix.os == 'windows-latest' }}

- name: Benchmark
run: cargo bench
if: ${{ matrix.os != 'windows-latest' }}

# interop:
# needs: test
Expand Down

0 comments on commit c3f6232

Please sign in to comment.