From a783654f76bdded4736f652cd9a4e79ce23fe5f8 Mon Sep 17 00:00:00 2001 From: Laurentiu Mihalcea Date: Thu, 14 Mar 2024 16:21:13 +0200 Subject: [PATCH 1/2] workflow: remove imx8ulp from gcc build test XTOS is going to be deprecated on i.MX8ULP so remove it from the gcc build test which uses SOF with XTOS. Signed-off-by: Laurentiu Mihalcea --- .github/workflows/pull-request.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index aed3cd275996..95cfb37b7a94 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -130,8 +130,7 @@ jobs: # Use groups to avoid spamming the web interface. Pay attention # to COMMAS. Don't use a single big group so a single failure # does not block all other builds. - platform: [imx8ulp, - rn rmb, + platform: [rn rmb, mt8186 mt8195, ] From 65c63df598d8ee49d7bd4ef1fb17d7b47b2ac519 Mon Sep 17 00:00:00 2001 From: Laurentiu Mihalcea Date: Thu, 14 Mar 2024 16:22:11 +0200 Subject: [PATCH 2/2] scripts: xtensa-build-all: remove imx8ulp XTOS is going to be deprecated on i.MX8ULP so prevent building it by removing it from the list of supported platforms from `xtensa-build-all.sh`. This is needed for switching to Zephyr native drivers. Signed-off-by: Laurentiu Mihalcea --- scripts/xtensa-build-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xtensa-build-all.sh b/scripts/xtensa-build-all.sh index 72d1ee6205fb..2143f0fb6be2 100755 --- a/scripts/xtensa-build-all.sh +++ b/scripts/xtensa-build-all.sh @@ -8,7 +8,7 @@ set -e # Platforms built and tested by default in CI using the `-a` option. # They must have a toolchain available in the latest Docker image. DEFAULT_PLATFORMS=( - imx8m imx8ulp + imx8m rn rmb vangogh mt8186 mt8195 )