Skip to content

Commit 48bda0a

Browse files
committed
chore(CI): use the Windows 2022 runner entirely
1 parent 3f78041 commit 48bda0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-and-publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- 'ubuntu-20.04'
1919
- 'macos-12'
2020
- 'macos-14'
21-
- 'windows-2019'
21+
- 'windows-2022'
2222
debug_enabled_python:
2323
type: choice
2424
description: Choose a Python version to run the build with SSH debugging on
@@ -129,7 +129,7 @@ jobs:
129129
fail-fast: false
130130
matrix:
131131
# The lowest supported version is Ubuntu 20.04 + Python 3.8 or macOS 12 + Python 3.9
132-
os: [ 'ubuntu-20.04', 'macos-12', 'macos-14', 'windows-2019' ]
132+
os: [ 'ubuntu-20.04', 'macos-12', 'macos-14', 'windows-2022' ]
133133
python_version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
134134
exclude:
135135
# actions/setup-python: The version '3.8'/'3.9' with architecture 'arm64' was not found for macOS.
@@ -211,7 +211,7 @@ jobs:
211211
name: wheel-${{ github.run_id }}-${{ github.sha }}
212212
path: ./dist/
213213
- name: Set cores to get stored in /cores
214-
if: ${{ matrix.os != 'windows-2019' }}
214+
if: ${{ matrix.os != 'windows-2022' }}
215215
# TODO (Caleb Aikens) figure out how to get Windows core dumps
216216
run: |
217217
sudo mkdir -p /cores
@@ -246,7 +246,7 @@ jobs:
246246
credentials: "admin:admin"
247247
- name: Upload core dumps as CI artifacts
248248
uses: actions/upload-artifact@v3
249-
if: ${{ matrix.os != 'windows-2019' && failure() }}
249+
if: ${{ matrix.os != 'windows-2022' && failure() }}
250250
# TODO (Caleb Aikens) figure out how to get Windows core dumps
251251
with:
252252
name: cores-${{ matrix.os }}-${{ matrix.python_version }}

0 commit comments

Comments
 (0)