You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# PHPBench may emit a "Module already loaded" warning when the .so is
332
361
# auto-loaded from php.ini AND via -d extension=. Strip those lines so
333
-
# the PR comment stays readable.
362
+
# the comment stays readable.
334
363
sed -i '/Warning: Module .* is already loaded/d' .phpbench/report.txt
335
364
336
365
{
337
366
echo "## Benchmark report"
338
367
echo
339
368
if [ "$BASE_HAS_BENCH" = "true" ]; then
340
-
echo "Comparison against \`${{ github.base_ref }}\` (\`${{ steps.base.outputs.sha }}\`)."
341
-
echo "Each row's \`mode\` column shows the PR-branch absolute throughput and the percent delta vs base. Positive deltas on \`Zephir*\` subjects mean the PR is faster; positive deltas on \`Php*\` baseline subjects are noisefloor signal."
369
+
echo "Comparison against \`${{ steps.pr.outputs.base }}\` (\`${{ steps.base.outputs.sha }}\`) on \`${{ steps.pr.outputs.branch }}\` (\`$GITHUB_SHA\`)."
370
+
echo "Each row's \`mode\` column shows the head-branch absolute throughput and the percent delta vs base. Positive deltas on \`Zephir*\` subjects mean head is faster; deltas on \`Php*\` baseline subjects are noise-floor signal."
342
371
else
343
-
echo "Base branch \`${{ github.base_ref }}\` does not yet contain the benchmark suite; absolute throughput only."
372
+
echo "Base branch \`${{ steps.pr.outputs.base }}\` does not yet contain the benchmark suite; absolute throughput only."
0 commit comments