From efc1010800136f8b01e52ba89b45af8f0a9d609e Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Thu, 3 Jul 2025 17:57:14 +0200 Subject: [PATCH] modifying ulimit setup --- .github/workflows/CI.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 702270b..333fdfc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,12 +34,11 @@ jobs: - name: Build nwaku dependencies run: make -C waku - - name: Increase ulimit - run: sudo sh -c "ulimit -n 65536" - - name: Run Daily Test run: | set -euo pipefail + ulimit -n 65536 + ulimit -n # This will print the current limit to verify it worked go test -count=10 -p=1 -v -timeout=360m ./waku \ | tee testlogs.log