From 8f05e7946e03e94ccb662d7dd6babc130a4a5986 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Mon, 2 Jun 2025 10:14:15 -0700 Subject: [PATCH 1/2] Run Windows CI on runners using `windows-latest` --- .github/workflows/conda-package.yml | 6 +++--- .github/workflows/run-tests-from-dppy-bits.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index ad4ee9daba..a9c5628c83 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -80,7 +80,7 @@ jobs: path: ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.PACKAGE_NAME }}-*.whl build_windows: - runs-on: windows-2019 + runs-on: windows-latest timeout-minutes: 150 strategy: @@ -254,7 +254,7 @@ jobs: matrix: python: ['3.9', '3.10', '3.11', '3.12', '3.13'] experimental: [false] - runner: [windows-2019] + runner: [windows-latest] continue-on-error: ${{ matrix.experimental }} env: workdir: '${{ github.workspace }}' @@ -458,7 +458,7 @@ jobs: if: | (github.repository == 'IntelPython/dpctl') && (github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/')) - runs-on: windows-2019 + runs-on: windows-latest timeout-minutes: 20 strategy: matrix: diff --git a/.github/workflows/run-tests-from-dppy-bits.yaml b/.github/workflows/run-tests-from-dppy-bits.yaml index 8d885c3c98..c3964319d7 100644 --- a/.github/workflows/run-tests-from-dppy-bits.yaml +++ b/.github/workflows/run-tests-from-dppy-bits.yaml @@ -80,7 +80,7 @@ jobs: matrix: python: ['3.9', '3.10', '3.11', '3.12', '3.13'] experimental: [false] - runner: [windows-2019] + runner: [windows-latest] continue-on-error: ${{ matrix.experimental }} env: From d2acf4cb07e45ad1592ecb0a81329eaccf9e8c9c Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Mon, 2 Jun 2025 13:16:46 -0700 Subject: [PATCH 2/2] Update Windows conda build config to require VS 2022 --- conda-recipe/conda_build_config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conda-recipe/conda_build_config.yaml b/conda-recipe/conda_build_config.yaml index 73cdbcb073..247aaa4ec2 100644 --- a/conda-recipe/conda_build_config.yaml +++ b/conda-recipe/conda_build_config.yaml @@ -13,6 +13,6 @@ c_stdlib_version: # [linux] c_stdlib: # [win] - vs # [win] cxx_compiler: # [win] - - vs2019 # [win] + - vs2022 # [win] c_compiler: # [win] - - vs2019 # [win] + - vs2022 # [win]