From f95801a27890f3fd8345675ebe8c1cc6d06d6114 Mon Sep 17 00:00:00 2001 From: aya Date: Sun, 16 Mar 2025 15:58:26 +0200 Subject: [PATCH] fix file name in yml file --- .github/workflows/endurancce_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/endurancce_test.yml b/.github/workflows/endurancce_test.yml index 36cd4ce..6b1f14f 100644 --- a/.github/workflows/endurancce_test.yml +++ b/.github/workflows/endurancce_test.yml @@ -28,11 +28,11 @@ jobs: run: | for i in {1..10}; do echo "Iteration $i: measuring memory BEFORE the tests..." - go run waku/memory_utils.go --iteration $i --phase start + go run tools/memory_record.go --iteration $i --phase start echo "Running tests (iteration $i)..." go test -v -tags '!stress' ./... echo "Iteration $i: measuring memory AFTER the tests..." - go run waku/memory_utils.go --iteration $i --phase end + go run tools/memory_record.go --iteration $i --phase end done - name: Upload memory_metrics.csv