From 8e91865e219d78d35c4ff9399839ce65fc60bf74 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 23 Jul 2025 18:32:47 +0900 Subject: [PATCH] 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed1960b6..c81856c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -351,7 +351,7 @@ jobs: if [ "${build_host_linux_x86_64}" == "y" ]; then MATRIX_TESTENVS+='{ - "name": "ubuntu-20.04-x86_64", + "name": "ubuntu-24.04-x86_64", "runner": "zephyr-runner-v2-linux-x64-4xlarge", "container": "ghcr.io/zephyrproject-rtos/ci:main", "bundle-host": "linux-x86_64", @@ -361,7 +361,7 @@ jobs: if [ "${build_host_linux_aarch64}" == "y" ]; then MATRIX_TESTENVS+='{ - "name": "ubuntu-20.04-aarch64", + "name": "ubuntu-24.04-aarch64", "runner": "zephyr-runner-v2-linux-arm64-4xlarge", "container": "ghcr.io/zephyrproject-rtos/ci:main", "bundle-host": "linux-aarch64", @@ -371,7 +371,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", @@ -381,7 +381,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",