From 3c28c2fdf7b37a006bfef45795fc8cc7980397f4 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Thu, 27 Feb 2025 11:06:01 +0000 Subject: [PATCH] Ulimit in macos tests --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8cc8bbe..f9ba72d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,9 +37,12 @@ jobs: - uses: Swatinem/rust-cache@v2 with: prefix-key: v1 - - name: Run tests (whole workspace, including desktop) - if: ${{ matrix.os != 'ubuntu-latest' }} + - name: Run tests + if: ${{ matrix.os == 'windows-latest' }} run: cargo test --workspace + - name: Run tests + if: ${{ matrix.os == 'macos-latest' }} + run: ulimit -n unlimited && cargo test --workspace - name: Run tests if: ${{ matrix.os == 'ubuntu-latest' }} run: cargo test