Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
chore: cleanup debugging flags
Browse files Browse the repository at this point in the history
Signed-off-by: Iliya Savov <[email protected]>
  • Loading branch information
isavov committed May 13, 2024
1 parent 1fc76b3 commit c4958ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gomu-gomu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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 '
Expand All @@ -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
Expand Down

0 comments on commit c4958ef

Please sign in to comment.