File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
working-directory : ${{runner.workspace}}/silkworm
114
114
env :
115
115
TEST_RESULT : ${{ steps.test_step.outputs.TEST_RESULT }}
116
- run : python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py --repo silkworm --commit $(git rev-parse HEAD) --test_name rpc-integration-tests --outcome $TEST_RESULT # --result_file ${{runner.workspace}}/rpc-tests/integration/mainnet/result.json
116
+ run : python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py --repo silkworm --branch ${{ github.ref_name }} -- commit $(git rev-parse HEAD) --test_name rpc-integration-tests --chain mainnet --outcome $TEST_RESULT # --result_file ${{runner.workspace}}/rpc-tests/integration/mainnet/result.json
117
117
118
118
- name : Action for Success
119
119
if : steps.test_step.outputs.TEST_RESULT == 'success'
Original file line number Diff line number Diff line change @@ -107,10 +107,12 @@ jobs:
107
107
cp -r ${{runner.workspace}}/rpc-tests/perf/reports/bin ${{runner.workspace}}/last_execution_test/
108
108
109
109
echo "Save test result on DB"
110
- python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py --repo silkworm --commit $(git rev-parse HEAD) --test_name rpc-performance-test-${servers[i-1]}-$method --outcome success --result_file ${{runner.workspace}}/rpc-tests/perf/reports/mainnet/result.json
110
+ cd ${{runner.workspace}}/silkworm
111
+ python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py --repo silkworm --branch ${{ github.ref_name }} --commit $(git rev-parse HEAD) --test_name rpc-performance-test-${servers[i-1]}-$method --chain mainnet --outcome success --result_file ${{runner.workspace}}/rpc-tests/perf/reports/mainnet/result.json
111
112
else
112
113
failed_test=1
113
- python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py --repo silkworm --commit $(git rev-parse HEAD) --test_name rpc-performance-test-${servers[i-1]}-$method --outcome failure
114
+ cd ${{runner.workspace}}/silkworm
115
+ python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py --repo silkworm --branch ${{ github.ref_name }} --commit $(git rev-parse HEAD) --test_name rpc-performance-test-${servers[i-1]}-$method --chain mainnet --outcome failure
114
116
115
117
fi
116
118
done
You can’t perform that action at this time.
0 commit comments