From 3aabe64cf63dfc23f1faf1688e587548a5bb9738 Mon Sep 17 00:00:00 2001 From: aya Date: Sat, 17 May 2025 23:22:25 +0300 Subject: [PATCH] revert changes in CI_endurance file --- .github/workflows/CI_endurance.yml | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/CI_endurance.yml b/.github/workflows/CI_endurance.yml index 05e9fb5..16a8fe6 100644 --- a/.github/workflows/CI_endurance.yml +++ b/.github/workflows/CI_endurance.yml @@ -28,19 +28,9 @@ jobs: - name: Install Go dependencies run: go mod download - - - name: Clean Go & libwaku caches - run: | - go clean -cache - make -C waku clean - + - name: Build nwaku dependencies - run: | - cd third_party/nwaku - git pull --ff-only - make update - make libwaku - make -C waku + run: make -C waku - name: Increase ulimit run: sudo sh -c "ulimit -n 8192" @@ -48,9 +38,8 @@ jobs: - name: Run Endurance Test (Group 1) shell: bash run: | - set -euo pipefail - go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressMemoryUsageForThreeNodes|TestStressConnectDisconnect500Iteration|TestStressHighThroughput10kPublish)$' | tee testlogs1.log + go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressMemoryUsageForThreeNodes|TestStressStoreQuery5kMessagesWithPagination|TestStressConnectDisconnect500Iteration|TestStressHighThroughput10kPublish)$' | tee testlogs1.log - name: Upload Test Logs (Group 1) uses: actions/upload-artifact@v4 @@ -100,7 +89,7 @@ jobs: shell: bash run: | set -euo pipefail - go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressRandomNodesInMesh|TestStress2Nodes2kIterationTearDown|TestPeerExchangePXLoad|TestStressStoreQuery5kMessagesWithPagination)$' | tee testlogs2.log + go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(TestStressRandomNodesInMesh|TestStress2Nodes2kIterationTearDown|TestPeerExchangePXLoad)$' | tee testlogs2.log - name: Upload Test Logs (Group 2) uses: actions/upload-artifact@v4