Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thesofproject/sof
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 429c30d8333ba622a33f5ad57e142d7b9b61b5f0
Choose a base ref
..
head repository: thesofproject/sof
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ff3f6d2d9a8d2fdb4e56da048ea216469814a0fc
Choose a head ref
Showing with 4 additions and 2 deletions.
  1. +4 −2 .github/workflows/zephyr.yml
6 changes: 4 additions & 2 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
@@ -456,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 *-d *.*' \
'windows-build *lnl' \
'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; }