From efac0d72e0521d3968bee6f90c75a8ff0d664bcd Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Fri, 26 Aug 2022 12:43:41 +0200 Subject: [PATCH] try set limits in pipeline --- .github/workflows/release.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a310ace9d5..d09fba6f2e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,7 +36,11 @@ jobs: run: make test - name: Run E2E Tests timeout-minutes: 20 - run: make e2e -e E2E_LOG_LEVEL=trace + run: | + sudo prlimit --pid $$ --nofile=1048576:1048576 + sudo sysctl fs.inotify.max_user_instances=1280 + sudo sysctl fs.inotify.max_user_watches=655360 + make e2e -e E2E_LOG_LEVEL=trace # Builds - name: Test Platform Builds run: make build-cross