Skip to content

Commit b7b7402

Browse files
authored
Remove Windows 2019 and add Windows 2025 with MSVC-17 (#220)
1 parent 8703b3e commit b7b7402

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ jobs:
212212
213213
214214
windows:
215-
runs-on: windows-2022 # latest
215+
runs-on: windows-2025 # latest
216216
steps:
217217
- uses: aws-actions/configure-aws-credentials@v4
218218
with:
@@ -224,7 +224,7 @@ jobs:
224224
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
225225
226226
windows-ed25519:
227-
runs-on: windows-2022 # latest
227+
runs-on: windows-2025 # latest
228228
steps:
229229
- uses: ilammy/setup-nasm@v1
230230
- uses: aws-actions/configure-aws-credentials@v4
@@ -237,7 +237,7 @@ jobs:
237237
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --variant=aws-lc-ed25519 --cmake-extra=-DAWS_USE_LIBCRYPTO_TO_SUPPORT_ED25519_EVERYWHERE=ON
238238
239239
windows-debug:
240-
runs-on: windows-2022 # latest
240+
runs-on: windows-2025 # latest
241241
steps:
242242
- uses: aws-actions/configure-aws-credentials@v4
243243
with:
@@ -248,8 +248,8 @@ jobs:
248248
python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
249249
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --config Debug --variant=just-tests
250250
251-
windows-vc14:
252-
runs-on: windows-2019 # windows-2019 is last env with Visual Studio 2015 (v14.0)
251+
windows-vc17:
252+
runs-on: windows-2025 # latest
253253
strategy:
254254
matrix:
255255
arch: [x86, x64]
@@ -261,10 +261,10 @@ jobs:
261261
- name: Build ${{ env.PACKAGE_NAME }} + consumers
262262
run: |
263263
python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
264-
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --target windows-${{ matrix.arch }} --compiler msvc-14
264+
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --target windows-${{ matrix.arch }} --compiler msvc-17
265265
266266
windows-shared-libs:
267-
runs-on: windows-2022 # latest
267+
runs-on: windows-2025 # latest
268268
steps:
269269
- uses: aws-actions/configure-aws-credentials@v4
270270
with:
@@ -276,7 +276,7 @@ jobs:
276276
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DBUILD_SHARED_LIBS=ON
277277
278278
windows-app-verifier:
279-
runs-on: windows-2022 # latest
279+
runs-on: windows-2025 # latest
280280
steps:
281281
- uses: aws-actions/configure-aws-credentials@v4
282282
with:

0 commit comments

Comments
 (0)