File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ jobs:
211
211
if : ${{ steps.should_run.outputs.should_run != 'false' }}
212
212
run : |
213
213
cd cpython
214
- ./configure ${{ inputs.pgo == true && '--enable-optimizations --with-lto=yes ' || '' }} ${{ inputs.tier2 == true && '--enable-experimental-jit=interpreter' || '' }} ${{ inputs.jit == true && '--enable-experimental-jit=yes' || '' }} ${{ inputs.nogil == true && '--disable-gil' || '' }}
214
+ ./configure ${{ inputs.pgo == true && '--enable-optimizations --with-lto=full ' || '' }} ${{ inputs.tier2 == true && '--enable-experimental-jit=interpreter' || '' }} ${{ inputs.jit == true && '--enable-experimental-jit=yes' || '' }} ${{ inputs.nogil == true && '--disable-gil' || '' }}
215
215
make ${{ runner.arch == 'ARM64' && '-j' || '-j4' }}
216
216
./python -VV
217
217
- name : Install pyperformance
@@ -320,7 +320,7 @@ jobs:
320
320
if : ${{ steps.should_run.outputs.should_run != 'false' }}
321
321
run : |
322
322
cd cpython
323
- ./configure ${{ inputs.pgo == true && '--enable-optimizations --with-lto=yes ' || '' }} ${{ inputs.tier2 == true && '--enable-experimental-jit=interpreter' || '' }} ${{ inputs.jit == true && '--enable-experimental-jit=yes' || '' }} ${{ inputs.nogil == true && '--disable-gil' || '' }}
323
+ ./configure ${{ inputs.pgo == true && '--enable-optimizations --with-lto=full ' || '' }} ${{ inputs.tier2 == true && '--enable-experimental-jit=interpreter' || '' }} ${{ inputs.jit == true && '--enable-experimental-jit=yes' || '' }} ${{ inputs.nogil == true && '--disable-gil' || '' }}
324
324
make -j4
325
325
./python.exe -VV
326
326
# On macos ARM64, actions/setup-python isn't available, so we rely on a
You can’t perform that action at this time.
0 commit comments