Ulimit in macos tests
This commit is contained in:
parent
a16247aadd
commit
3c28c2fdf7
1 changed files with 5 additions and 2 deletions
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue