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
4 changes: 4 additions & 0 deletions .github/workflows/sparse-zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ defaults:
shell: bash

jobs:
# disable until https://github.com/zephyrproject-rtos/zephyr/issues/93444
# is fixed
if: false
Copy link

Copilot AI Oct 28, 2025

Choose a reason for hiding this comment

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

The if: false statement is incorrectly placed at the file level between jobs: and the job definition. This will cause a syntax error. It should be placed within a specific job definition. Move this line and the preceding comments to be indented under the job name (e.g., after the job key on the next line).

Copilot uses AI. Check for mistakes.

# As of sparse commit ce1a6720f69e / Sept 2022, the exit status of
# sparse.c is an unusable mess and always zero in practice. Moreover
# SOF has hundreds of sparse warnings right now. So fail only on a
Expand Down
Loading