diff options
author | Hiroshi SHIBATA <[email protected]> | 2025-05-28 09:03:17 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-05-28 10:37:00 +0900 |
commit | 28860842cf458e7baaba12049628b9cf570bcd95 (patch) | |
tree | 6fddffa8cd8936dda879d95d12e5aacbabd88821 | |
parent | 326c120aa70274b8bdab3ce791f504f32f9b9b09 (diff) |
Use the latest version of Windows SDK
https://github.com/ruby/ruby/commit/72bda0f981c7136f50254c433bbfb97a953f634b
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13453
-rw-r--r-- | .github/workflows/windows.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bf3b1fdbed..1df914f565 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,18 +27,18 @@ jobs: include: - os: 2022 vc: 2019 - vcvars: '10.0.22621.0 -vcvars_ver=14.2' # The defautl Windows 11 SDK and toolset are broken at windows-2022 + vcvars: '-vcvars_ver=14.2' # VS 2022 17.13.x is broken at windows-2022 test_task: check - os: 2025 vc: 2019 - vcvars: '10.0.22621.0 -vcvars_ver=14.2' + vcvars: '-vcvars_ver=14.2' test_task: check - os: 11-arm test_task: 'btest test-basic test-tool' # check and test-spec are broken yet. target: arm64 - os: 2022 vc: 2019 - vcvars: '10.0.22621.0 -vcvars_ver=14.2' + vcvars: '-vcvars_ver=14.2' test_task: test-bundled-gems fail-fast: false |