Increase nofile limit to 10,000 when building container on PR workflow too

This commit is contained in:
Ashleigh Carr 2024-02-08 10:28:14 +00:00
parent a0729304d1
commit 4b95ab2477

View file

@ -46,6 +46,9 @@ jobs:
containerfiles: ./Containerfile containerfiles: ./Containerfile
platforms: linux/amd64 platforms: linux/amd64
oci: true 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 - name: UI Tests
if: success() if: success()