From 4b95ab2477bc3fbc79969266c8e686db55b4d699 Mon Sep 17 00:00:00 2001 From: Ashleigh Carr Date: Thu, 8 Feb 2024 10:28:14 +0000 Subject: [PATCH] Increase nofile limit to 10,000 when building container on PR workflow too --- .github/workflows/pull_requests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index 16fbb6de..f6a9683c 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -46,6 +46,9 @@ jobs: containerfiles: ./Containerfile platforms: linux/amd64 oci: true + # Webpack seems to use a lot of open files, increase the max open file limit to accomodate. + extra-args: | + --ulimit nofile=10000 - name: UI Tests if: success()