From c2e40c019cc2df1e70f1eff304fc5001e117f3a3 Mon Sep 17 00:00:00 2001 From: Pedro Castro Date: Tue, 17 Dec 2024 15:06:15 -0300 Subject: [PATCH] increase macos file descriptors --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a559c82bb1..eb8358da6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + # Default is too slow, 256 + - name: Increase file descriptors limit (macOS only) + if: runner.os == 'macOS' + run: sudo launchctl limit maxfiles 1024 10000 + - name: Restore build cache id: build-cache uses: actions/cache@v4