Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bane committed Apr 19, 2024
1 parent e68cca9 commit 1a13e19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/deploy-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ on: # yamllint disable-line rule:truthy
description: Gossip Message Size
type: string
default: "1048576"
required: true
notification:
description: Notification
type: boolean
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Build Blade
run: make build
- name: Start Load Test
id: load_test_results
run: |
make build
./blade load-test --jsonrpc "http://${{ needs.check_network.outputs.rpc_url }}" --mnemonic "${{ secrets.AWS_LOADTESTRUNNER_MNEMONIC }}" --name "results" --type ${{ inputs.type }} ${{ inputs.dynamic == true && '--dynamic' || '' }} --vus ${{ inputs.vus }} --txs-per-user ${{ inputs.txs_per_user }} --batch-size ${{ inputs.batch_size }} --txpool-timeout ${{ inputs.txpool_timeout }} ${{ inputs.wait_txpool == true && '--txpool-timeout' || '' }} --receipts-timeout ${{ inputs.receipts_timeout }} --to-json
echo "total_time=$(cat results_${{ inputs.type }}.json | jq -r '.totalTime')" >> $GITHUB_OUTPUT
echo "total_txs=$(cat results_${{ inputs.type }}.json | jq -r '.totalTxs')" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 1a13e19

Please sign in to comment.