diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 557f4c9168..552ea07148 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ default: - api_failure .docker-env: &docker-env - image: "paritytech/ci-linux:production" + image: "paritytech/ci-linux:staging" interruptible: true tags: - linux-docker-benches diff --git a/scripts/ci/benchmarks-report.sh b/scripts/ci/benchmarks-report.sh index 4279bdb564..3e63a86feb 100644 --- a/scripts/ci/benchmarks-report.sh +++ b/scripts/ci/benchmarks-report.sh @@ -47,7 +47,7 @@ pushd ./target/ci/criterion # Format benchmarks details into a table RESULT=$(for d in */; do - BENCH_ID=$(jq .full_id ${d}master/benchmark.json | tr -d '"') + BENCH_ID=$(jq .full_id ${d}master/benchmark.json | tr -d '"' | sed -e 's/\//\/<\/tt>/' ) MASTER_TIME=$(jq .slope.point_estimate ${d}master/estimates.json) PR_TIME=$(jq .slope.point_estimate ${d}new/estimates.json) @@ -61,7 +61,7 @@ RESULT=$(for d in */; do WT_OVERHEAD=$(echo "($WASM_PR_TIME-$PR_TIME)/$PR_TIME*100" | bc -l | xargs printf "%.0f") - echo -n "$BENCH_ID<\/td>"\ + echo -n "$BENCH_ID<\/td>"\ " $(format_time $MASTER_TIME)<\/td>" \ " $(format_time $PR_TIME)<\/td>" \ " $PERF_CHANGE $(echo $DIFF*100 | bc -l | xargs printf "%.2f%%")<\/td>" \