From 990c120dc6f72eace65be4a1976b82cfad055a75 Mon Sep 17 00:00:00 2001 From: radupopa2010 Date: Tue, 18 Oct 2022 12:54:34 +0300 Subject: [PATCH] make less noise in the gitlab job output (#906) --- scripts/ci/push_bench_results.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/push_bench_results.sh b/scripts/ci/push_bench_results.sh index af66fc07e4..362c01b9c7 100755 --- a/scripts/ci/push_bench_results.sh +++ b/scripts/ci/push_bench_results.sh @@ -23,12 +23,12 @@ do # send metric with common results echo 'parity_benchmark_common_result_ns{project="'${CI_PROJECT_NAME}'",benchmark="'${BENCH_NAME}'"} '${BENCH_RESULT}'' echo 'parity_benchmark_common_result_ns{project="'${CI_PROJECT_NAME}'",benchmark="'${BENCH_NAME}'"} '${BENCH_RESULT}'' \ - | curl --data-binary @- "https://pushgateway.parity-build.parity.io/metrics/job/${BENCH_NAME}" + | curl --silent --data-binary @- "https://pushgateway.parity-build.parity.io/metrics/job/${BENCH_NAME}" # send metric with detailed results echo 'parity_benchmark_specific_result_ns{project="'${CI_PROJECT_NAME}'",benchmark="'${BENCH_NAME}'",commit="'${CI_COMMIT_SHORT_SHA}'",cirunner="'${RUNNER_NAME}'"} '${BENCH_RESULT}'' echo 'parity_benchmark_specific_result_ns{project="'${CI_PROJECT_NAME}'",benchmark="'${BENCH_NAME}'",commit="'${CI_COMMIT_SHORT_SHA}'",cirunner="'${RUNNER_NAME}'"} '${BENCH_RESULT}'' \ - | curl --data-binary @- "https://pushgateway.parity-build.parity.io/metrics/job/${BENCH_NAME}" + | curl --silent --data-binary @- "https://pushgateway.parity-build.parity.io/metrics/job/${BENCH_NAME}" done < "${INPUT}"