From 1a13e19d3811da99eeaed2ce2ccaee2fe75bab22 Mon Sep 17 00:00:00 2001 From: Branislav Kojic Date: Fri, 19 Apr 2024 21:20:18 +0200 Subject: [PATCH] Small changes --- .github/workflows/deploy-network.yml | 1 + .github/workflows/load-test.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-network.yml b/.github/workflows/deploy-network.yml index 204e232ec4..61dcec97dc 100644 --- a/.github/workflows/deploy-network.yml +++ b/.github/workflows/deploy-network.yml @@ -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 diff --git a/.github/workflows/load-test.yml b/.github/workflows/load-test.yml index df55bb3cca..172b3a5029 100644 --- a/.github/workflows/load-test.yml +++ b/.github/workflows/load-test.yml @@ -204,10 +204,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4.1.1 + - 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