From aa2a3c3e60c0268dd0ec8eeb97d8769f6096092c Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Fri, 24 Mar 2023 13:47:32 +0100 Subject: [PATCH] Remove ulimit --- .github/workflows/osrm-backend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index 4503d4517..fb29e5cb8 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -395,7 +395,7 @@ jobs: if [[ "${RUNNER_OS}" == "Linux" ]]; then echo "JOBS=$((`nproc` + 1))" >> $GITHUB_ENV elif [[ "${RUNNER_OS}" == "macOS" ]]; then - echo "JOBS=$((`ulimit -n 1024 && sysctl -n hw.ncpu` + 1))" >> $GITHUB_ENV + echo "JOBS=$((`sysctl -n hw.ncpu` + 1))" >> $GITHUB_ENV fi - name: Install dev dependencies