From 2f40a68f25907ad5470ab4045bc4ba5fcdc3d1f6 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Fri, 20 Oct 2023 05:53:46 -0700 Subject: [PATCH] Increase CI number of files ulimit to 1M --- .github/workflows/pr.yaml | 3 ++- .github/workflows/test.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 2f292778..8280425f 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -34,6 +34,7 @@ jobs: uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-23.12 with: build_type: pull-request + container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000" wheel-build: needs: checks secrets: inherit @@ -48,4 +49,4 @@ jobs: with: build_type: pull-request script: ci/test_wheel.sh - test-docker-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g" + container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ec06180b..cc01ab46 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,6 +22,7 @@ jobs: branch: ${{ inputs.branch }} date: ${{ inputs.date }} sha: ${{ inputs.sha }} + test-docker-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000" wheel-tests: secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-23.12 @@ -31,4 +32,4 @@ jobs: date: ${{ inputs.date }} sha: ${{ inputs.sha }} script: ci/test_wheel.sh - test-docker-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g" + test-docker-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"