From 09b7e02e1cc64a6befe41bcccc0b05c5a0b6c95f Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Mon, 28 Oct 2024 09:04:44 +0900 Subject: [PATCH 1/2] ci: Fix Windows test name The Windows test runs on `zephyr-runner-v2-windows-x64-2xlarge`, which is Windows Server 2022, not 2019. Signed-off-by: Stephanos Ioannidis --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23830975..42cbb9a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -383,7 +383,7 @@ jobs: if [ "${build_host_windows_x86_64}" == "y" ]; then MATRIX_TESTENVS+='{ - "name": "windows-2019-x86_64", + "name": "windows-2022-x86_64", "runner": "zephyr-runner-v2-windows-x64-2xlarge", "container": "", "bundle-host": "windows-x86_64", From 97fbe1a97c54f940e980821be3819b244b2bbe34 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 23 Jul 2025 18:32:47 +0900 Subject: [PATCH 2/2] ci: Fix Linux and macOS test names The Linux CI Docker image is now based on Ubuntu 24.04, and the macOS zephyr-runner runs with macOS 15.3-based image. Signed-off-by: Stephanos Ioannidis --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42cbb9a6..df0996a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -363,7 +363,7 @@ jobs: if [ "${build_host_macos_x86_64}" == "y" ]; then MATRIX_TESTENVS+='{ - "name": "macos-11-x86_64", + "name": "macos-15-x86_64", "runner": "zephyr-runner-v2-macos-arm64-2xlarge", "container": "", "bundle-host": "macos-x86_64", @@ -373,7 +373,7 @@ jobs: if [ "${build_host_macos_aarch64}" == "y" ]; then MATRIX_TESTENVS+='{ - "name": "macos-11-aarch64", + "name": "macos-15-aarch64", "runner": "zephyr-runner-v2-macos-arm64-2xlarge", "container": "", "bundle-host": "macos-aarch64",