diff --git a/.github/workflows/performance_quickstarts.yml b/.github/workflows/performance_quickstarts.yml index 1ed6b7e..73e3d6c 100644 --- a/.github/workflows/performance_quickstarts.yml +++ b/.github/workflows/performance_quickstarts.yml @@ -268,11 +268,13 @@ jobs: shell: bash env: TIMEFOLD_ENTERPRISE_LICENSE: ${{ secrets.TIMEFOLD_SOLVER_CI_PROD_LICENSE }} + RUNS: ${{ github.event.inputs.runs }} + TIME_LIMIT: ${{ github.event.inputs.time_limit }} run: | python3 timefold-solver-benchmarks/benchmark-quickstarts.py \ ${{ matrix.example }} ./baseline-app \ - --runs ${{ github.event.inputs.runs }} \ - --time-limit ${{ github.event.inputs.time_limit }} \ + --runs $RUNS \ + --time-limit $TIME_LIMIT \ --base-port $((8080 + ${{ strategy.job-index }})) \ --output baseline.csv echo "RANGE_MID=$(tail -1 baseline.csv | cut -d',' -f3)" >> "$GITHUB_OUTPUT"