Skip to content

Commit

Permalink
.github/zephyr: build LNL and PTL on Windows too
Browse files Browse the repository at this point in the history
This matters because the build reproducibility test is based on the list
of Windows builds.

Also:
- Bump -d(ebug) build to something newer: LNL
- Group MTL and LNL to save one line

Signed-off-by: Marc Herbert <[email protected]>
  • Loading branch information
marc-hb committed Jan 28, 2025
1 parent 4c3d692 commit 7f43279
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@ jobs:
IPC_platforms: [
# - IPC3 default
imx8 imx8x imx8m imx8ulp,
# - IPC4 default
mtl, lnl, ptl,
# - IPC4 default, released
mtl lnl,
# active development
ptl,
# Temporary testbed for Zephyr development.
tgl tgl-h,
]
Expand All @@ -126,7 +128,7 @@ jobs:
# specify one extra -d combination without affecting the main matrix
- build_opts: -d
zephyr_revision: mnfst
IPC_platforms: mtl
IPC_platforms: lnl

# This is "duplication of effort" but it makes sure no one
# breaks --all, see for instance #9262 and previous commit.
Expand Down Expand Up @@ -243,15 +245,18 @@ jobs:
platforms: [
# - IPC3 default
imx8 imx8x imx8m imx8ulp,
# - IPC4 default
mtl,
# - IPC4 default, released
mtl lnl,
# active development
ptl,
# legacy
tgl tgl-h,
]
build_opts: [""]
# Sparse matrices are complicated, see comments on Linux matrix above.
include:
- build_opts: -d
platforms: mtl
platforms: lnl


steps:
Expand Down Expand Up @@ -451,10 +456,12 @@ jobs:
run: |
diffs=0; ls -l
# Check not too much is missing (it happened!)
# Look for a few samples to
# check not too much is missing (it happened!)
# http://mywiki.wooledge.org/ParsingLs
for regdir in 'linux-build *mtl' \
'windows-build *mtl' \
for regdir in 'linux-build *-d *.*' \
'linux-build *.*lnl.*' \
'windows-build *.*mtl.*' \
'windows-build *tgl tgl-h'; do
find . -maxdepth 1 | grep -q "\./${regdir}\$" ||
{ >&2 printf 'Missing %s\n' "${regdir}"; exit 1; }
Expand Down

0 comments on commit 7f43279

Please sign in to comment.