Skip to content

Commit 37c68b6

Browse files
committed
Windows bugfixes
1 parent 4eca84e commit 37c68b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bench_runner/scripts/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def get_exe_path(cpython: Path, flags: list[str], force_32bit: bool) -> Path:
3838
elif sys.platform == "darwin":
3939
return cpython / "python.exe"
4040
elif sys.platform.startswith("win32"):
41-
build_dir = get_windows_build_dir(force_32bit)
41+
build_dir = cpython / get_windows_build_dir(force_32bit)
4242
if "NOGIL" in flags:
4343
print(list(build_dir.glob("*.exe")))
4444
exe = next(build_dir.glob("python3.*.exe"))

bench_runner/templates/_benchmark.src.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Building Python and running pyperformance
7575
shell: cmd
7676
run: |
77-
python workflow_bootstrap.py ${{ inputs.fork }} ${{ inputs.ref }} ${{ inputs.machine }} ${{ inputs.benchmarks || 'all' }} "${{ env.flags }}" ${{ inputs.force && '--force' || '' }} ${{ inputs.pgo && '--pgo' || '' }} --run_id ${{ github.run_id }} %BUILD_FLAGS%
77+
python workflow_bootstrap.py ${{ inputs.fork }} ${{ inputs.ref }} ${{ inputs.machine }} ${{ inputs.benchmarks || 'all' }} "${{ env.flags }}" ${{ inputs.force && '--force' || '' }} ${{ inputs.pgo && '--pgo' || '' }} --run_id ${{ github.run_id }}
7878
# Pull again, since another job may have committed results in the meantime
7979
- name: Pull benchmarking
8080
run: |

0 commit comments

Comments
 (0)