From 421f435d109d051130ce0d16633dd3644df98f0f Mon Sep 17 00:00:00 2001 From: aya Date: Mon, 17 Mar 2025 02:23:01 +0200 Subject: [PATCH] disable exit on error --- .github/workflows/endurancce_test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/endurancce_test.yml b/.github/workflows/endurancce_test.yml index 07e06b5..b74989b 100644 --- a/.github/workflows/endurancce_test.yml +++ b/.github/workflows/endurancce_test.yml @@ -43,6 +43,7 @@ jobs: - name: Repeated test runs run: | + set +e for i in {1..10}; do echo "Iteration $i: measuring memory BEFORE the tests..." go run tools/memory_record.go --iteration $i --phase start @@ -51,6 +52,7 @@ jobs: echo "Iteration $i: measuring memory AFTER the tests..." go run tools/memory_record.go --iteration $i --phase end done + set -e - name: Upload memory_metrics.csv uses: actions/upload-artifact@v4