From 2ce8f8f99f26c4f67e47741cec7ae047ddd36e9b Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Fri, 15 Nov 2024 17:43:34 +0200 Subject: [PATCH] [test] Update to windows-2022 for GraalVM smoke tests On windows-2019 the tests are failing with ``` Error: On Windows, GraalVM Native Image for JDK 17 requires Visual Studio 2022 version 17.1.0 or later (C/C++ Optimizing Compiler Version 19.31 or later). ``` --- .github/workflows/check_netty_snapshots.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check_netty_snapshots.yml b/.github/workflows/check_netty_snapshots.yml index 9f2faa2d7..923f49a08 100644 --- a/.github/workflows/check_netty_snapshots.yml +++ b/.github/workflows/check_netty_snapshots.yml @@ -11,11 +11,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-13, windows-2019] + os: [ubuntu-20.04, macos-13, windows-2022] transport: [native, nio] exclude: # excludes native on Windows (there's none) - - os: windows-2019 + - os: windows-2022 transport: native # macOS - https://github.com/netty/netty/issues/9689 - os: macos-13