Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,16 @@ jobs:
# many lines. Pay attention to COMMAS.
IPC_platforms: [
# - IPC3 default
imx8 imx8x imx8m imx8ulp,
imx8 imx8x,
imx8m imx8ulp,
# - IPC4 default, released
mtl lnl,
mtl,
lnl,
# active development
ptl,
# Temporary testbed for Zephyr development.
tgl tgl-h,
tgl,
tgl-h
Copy link

Copilot AI Jan 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing trailing comma after 'tgl-h'. This inconsistency with other array entries could cause parsing issues.

Suggested change
tgl-h
tgl-h,

Copilot uses AI. Check for mistakes.
]
build_opts: [""]
# Sparse matrices are complicated, you must read this page slowly:
Expand Down Expand Up @@ -238,13 +241,16 @@ jobs:
# many lines. Pay attention to COMMAS.
platforms: [
# - IPC3 default
imx8 imx8x imx8m imx8ulp,
imx8 imx8x,
imx8m imx8ulp,
# - IPC4 default, released
mtl lnl,
mtl,
lnl,
# active development
ptl,
# legacy
tgl tgl-h,
tgl,
tgl-h
Copy link

Copilot AI Jan 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing trailing comma after 'tgl-h'. This inconsistency with other array entries could cause parsing issues.

Copilot uses AI. Check for mistakes.
]
build_opts: [""]
# Sparse matrices are complicated, see comments on Linux matrix above.
Expand Down Expand Up @@ -462,7 +468,8 @@ jobs:
for regdir in 'linux-build *-d *.*' \
'linux-build *.*lnl.*' \
'windows-build *.*mtl.*' \
'windows-build *tgl tgl-h'; do
'windows-build *tgl-h' \
'windows-build *tgl'; do
find . -maxdepth 1 | grep -q "\./${regdir}\$" ||
{ >&2 printf 'Missing %s\n' "${regdir}"; exit 1; }
done
Expand Down
Loading