Skip to content

Commit

Permalink
ETCM-1062 adds report check for load runs
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofpaliga-iohk committed Jul 29, 2021
1 parent 5edfd9e commit 68cc1c1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions performance/caliper/networks/e2e/run.sh
@@ -1,3 +1,6 @@
#!/bin/bash
cd ../../caliper-benchmarks
npx caliper launch manager --caliper-benchconfig ../smartcontract/hello/config.yaml --caliper-networkconfig ../networks/e2e/networkconfig.json --caliper-workspace .
if [ ! -f report.html ]; then
exit 1
fi
4 changes: 4 additions & 0 deletions performance/caliper/networks/sagano/run.sh
@@ -1,3 +1,7 @@
#!/bin/bash
cd ../../caliper-benchmarks
npx caliper launch manager --caliper-benchconfig ../smartcontract/hello/config.yaml --caliper-networkconfig ../networks/sagano/networkconfig.json --caliper-workspace .
if [ ! -f report.html ]; then
exit 1
fi

4 changes: 4 additions & 0 deletions performance/caliper/networks/sagano/run_myerc20.sh
@@ -1,3 +1,7 @@
#!/bin/bash
cd ../../caliper-benchmarks
npx caliper launch manager --caliper-benchconfig ../smartcontract/myerc20/config.yaml --caliper-networkconfig ../networks/sagano/networkconfig_myerc20.json --caliper-workspace .
if [ ! -f report.html ]; then
exit 1
fi

4 changes: 4 additions & 0 deletions performance/caliper/networks/staging/run.sh
@@ -1,3 +1,7 @@
#!/bin/bash
cd ../../caliper-benchmarks
npx caliper launch manager --caliper-benchconfig ../smartcontract/hello/config.yaml --caliper-networkconfig ../networks/staging/networkconfig.json --caliper-workspace .
if [ ! -f report.html ]; then
exit 1
fi

0 comments on commit 68cc1c1

Please sign in to comment.