From c4958ef00fb94783cceda37f9880baf55cf634c0 Mon Sep 17 00:00:00 2001 From: Iliya Savov Date: Mon, 13 May 2024 15:01:45 +0300 Subject: [PATCH] chore: cleanup debugging flags Signed-off-by: Iliya Savov --- .github/workflows/gomu-gomu-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gomu-gomu-tests.yml b/.github/workflows/gomu-gomu-tests.yml index be82105c59..df5e57c9b7 100644 --- a/.github/workflows/gomu-gomu-tests.yml +++ b/.github/workflows/gomu-gomu-tests.yml @@ -32,7 +32,7 @@ jobs: - name: Setup gomu gomu run: | - set -v -x +e + set -v -x cd .. git clone https://github.com/keep-starknet-strange/gomu-gomu-no-gatling.git cd gomu-gomu-no-gatling @@ -45,8 +45,8 @@ jobs: - name: Run gomu gomu test run: |- - set -v -x +e - ./target/production/madara --dev > madara.log 2>&1 & + set -v -x + ./target/production/madara --dev --cache > madara.log 2>&1 & MADARA_RUN_PID=$! while ! echo exit | nc localhost 9944; do sleep 1; done cd ../gomu-gomu-no-gatling @@ -55,7 +55,7 @@ jobs: - name: Process results run: | - set -v -x +e + set -v -x cp ../gomu-gomu-no-gatling/report.json ./ #### Extract TPS, UOPS, Extrinsics and Steps from the report #### jq ' @@ -68,7 +68,7 @@ jobs: - name: Check for failed requests run: | - set -v -x +e + set -v -x #### Extract Failed from the report #### jq ' .benches[] |= (.name as $benchName | .metrics[] |= (.name = .name + " ("+ $benchName + ")")) # Append benchmark name to each metric name