Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
replace rest of regular
  • Loading branch information
chris-eibl committed Mar 28, 2026
commit 64f7ecb4031a6891f1ada04818190a535e07e9c4
6 changes: 3 additions & 3 deletions .github/workflows/reusable-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
description: Which interpreter to build
required: false
type: string
default: regular
default: switch-case

env:
FORCE_COLOR: 1
Expand All @@ -43,7 +43,7 @@ jobs:
run: >-
.\\PCbuild\\build.bat
-e -v
${{ inputs.interpreter == 'regular' && '-d' || '--tail-call-interp -c Release' }}
${{ inputs.interpreter == 'switch-case' && '-d' || '--tail-call-interp -c Release' }}
-p "${ARCH}"
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
shell: bash
Expand All @@ -54,6 +54,6 @@ jobs:
.\\PCbuild\\rt.bat
-p "${ARCH}"
-q --fast-ci
${{ inputs.interpreter == 'regular' && '-d' || '' }}
${{ inputs.interpreter == 'switch-case' && '-d' || '' }}
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
shell: bash
Loading