8000 gh-111062: Reusable Windows build that supports free-threaded mode as the conditional CI by corona10 · Pull Request #111493 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111062: Reusable Windows build that supports free-threaded mode as the conditional CI #111493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 30, 2023
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
Update
  • Loading branch information
corona10 committed Oct 30, 2023
commit 4f17e1af0dbce3b7959b93b41baaf040dee790cc
6 changes: 3 additions & 3 deletions .github/workflows/reusable-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
default: false

jobs:
build_win_32:
build_windows_32:
name: 'build and test (x86)'
runs-on: windows-latest
timeout-minutes: 60
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Tests
run: .\PCbuild\rt.bat -p Win32 -d -q --fast-ci

build_win_amd64:
build_windows_amd64:
name: 'build and test (x64)'
runs-on: windows-latest
timeout-minutes: 60
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Tests
run: .\PCbuild\rt.bat -p x64 -d -q --fast-ci

build_win_arm64:
build_windows_arm64:
name: 'build (arm64)'
runs-on: windows-latest
timeout-minutes: 60
Expand Down
0