ci: raise macOS file descriptor limit for release tests

This commit is contained in:
Bryan Helmkamp 2026-07-30 06:58:10 -04:00
parent 69d4482da5
commit 2cb796c636
No known key found for this signature in database

View file

@ -100,7 +100,11 @@ jobs:
# runner yet; shipping binary is exercised via Docker smoke tests.
# Re-enable after verifying the workspace passes on this target.
if: matrix.target != 'aarch64-unknown-linux-musl' && matrix.target != 'x86_64-unknown-linux-musl'
run: cargo nextest run --locked --workspace --target ${{ matrix.target }} --release --status-level slow --profile ci
run: |
if [[ "$RUNNER_OS" == "macOS" ]]; then
ulimit -n 4096
fi
cargo nextest run --locked --workspace --target ${{ matrix.target }} --release --status-level slow --profile ci
- name: Build (musl via cargo-zigbuild)
if: matrix.musl