Skip to content

Commit 394f128

Browse files
authored
Merge pull request #80 from IntelPython/use-windows-latest-in-ci
Use `windows-latest` in GitHub CI
2 parents 75bac3f + 85e13b6 commit 394f128

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
pytest -v --pyargs ${{ env.PACKAGE_NAME }}
143143
144144
build_windows:
145-
runs-on: windows-2019
145+
runs-on: windows-latest
146146

147147
strategy:
148148
matrix:
@@ -211,7 +211,7 @@ jobs:
211211
matrix:
212212
python: ["3.9", "3.10", "3.11", "3.12"]
213213
experimental: [false]
214-
runner: [windows-2019]
214+
runner: [windows-latest]
215215
continue-on-error: ${{ matrix.experimental }}
216216
env:
217217
workdir: '${{ github.workspace }}'

conda-recipe/conda_build_config.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
numpy:
2+
- '1.26.4'
3+
c_compiler: # [linux]
4+
- gcc # [linux]
5+
cxx_compiler: # [linux]
6+
- gxx # [linux]
7+
cxx_compiler_version: # [linux]
8+
- '14' # [linux]
9+
c_stdlib: # [linux]
10+
- sysroot # [linux]
11+
c_stdlib_version: # [linux]
12+
- '2.28' # [linux]
13+
c_stdlib: # [win]
14+
- vs # [win]
15+
cxx_compiler: # [win]
16+
- vs2022 # [win]
17+
c_compiler: # [win]
18+
- vs2022 # [win]

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ requirements:
1717
build:
1818
- {{ compiler('c') }}
1919
- {{ compiler('cxx') }}
20+
- {{ stdlib('c') }}
2021
- {{ compiler('dpcpp') }} >=2024.2 # [not osx]
21-
- sysroot_linux-64 >=2.28 # [linux]
2222
host:
2323
- setuptools >=77
2424
- cmake

0 commit comments

Comments
 (0)