File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -202,9 +202,9 @@ def compile_windows(
202
202
if "CLANG" in flags :
203
203
args .extend (
204
204
[
205
- ' "/p:PlatformToolset`=clangcl"' ,
206
- r "/p:LLVMInstallDir=C:\Program Files\LLVM" ,
207
- r "/p:LLVMToolsVersion=19.1.6" ,
205
+ "/p:PlatformToolset`=clangcl" ,
206
+ "/p:LLVMInstallDir` =C:\\ Program Files\ \ LLVM" ,
207
+ "/p:LLVMToolsVersion` =19.1.6" ,
208
208
"--tail-call-interp" ,
209
209
]
210
210
)
@@ -215,7 +215,6 @@ def compile_windows(
215
215
Path ("PCbuild" ) / "build.bat" ,
216
216
* args ,
217
217
],
218
- shell = True ,
219
218
)
220
219
shutil .copytree (get_windows_build_dir (force_32bit ), "libs" , dirs_exist_ok = True )
221
220
Original file line number Diff line number Diff line change 72
72
run : |
73
73
git gc
74
74
- name : Building Python and running pyperformance
75
- shell : cmd
76
75
run : |
77
76
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 }}
78
77
# Pull again, since another job may have committed results in the meantime
You can’t perform that action at this time.
0 commit comments