File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ jobs:
349349 set -e # Exit on any error
350350 echo "🏃 Running Core benchmark suite..."
351351
352- if ! $BENCH_CMD benchmarks/bench.rb; then
352+ if ! BASE_URL="localhost:${BENCHMARK_PORT}" $BENCH_CMD benchmarks/bench.rb; then
353353 echo "❌ ERROR: Benchmark execution failed"
354354 exit 1
355355 fi
@@ -473,7 +473,7 @@ jobs:
473473 set -e
474474 echo "🏃 Running Pro benchmark suite..."
475475
476- if ! PRO=true $BENCH_CMD benchmarks/bench.rb; then
476+ if ! BASE_URL="localhost:${BENCHMARK_PORT}" PRO=true $BENCH_CMD benchmarks/bench.rb; then
477477 echo "❌ ERROR: Benchmark execution failed"
478478 exit 1
479479 fi
Original file line number Diff line number Diff line change @@ -121,8 +121,7 @@ jobs:
121121 - uses : actions/checkout@v4
122122 with :
123123 persist-credentials : false
124- # libyaml-dev is needed for psych v5
125- # this gem depends on sdoc which depends on rdoc which depends on psych
124+ # libyaml-dev is needed for psych v5 native extensions (sdoc -> rdoc -> psych)
126125 - name : Install libyaml-dev (required for psych v5 native extensions)
127126 run : sudo apt-get update && sudo apt-get install -y --no-install-recommends libyaml-dev
128127 - name : Setup Ruby
You can’t perform that action at this time.
0 commit comments