From 6314223966ec6d0c047e95b190a6c99f715a0da1 Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Wed, 9 Jul 2025 16:04:54 +0300 Subject: [PATCH] updating CI --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b33d92c..a7d0752 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,11 +34,13 @@ jobs: - name: Build nwaku dependencies run: make -C waku + - name: Increase ulimit + run: sudo sh -c "ulimit -n 8192" + - name: Run Daily Test run: | set -euo pipefail - ulimit -n 65536 - go test -count=5 -p=1 -v -timeout=360m ./waku \ + go test -count=3 -p=1 -v -timeout=360m ./waku \ | tee testlogs.log - name: Upload Test Logs