Commit 2bf8638
.github: really disable spar-se instead of breaking it
Fixes commit 56649f6 ("github: workflows: disable sparse checks
temporarily") which caused a syntax error
GitHub jobs can be disabled one by one but not all at once:
https://docs.github.com/en/actions/reference/workflows-and-actions/
workflow-syntax#jobsjob_idif
This syntax error was found by Copilot; quoting:
#10337 (comment)
> 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
This has blocked daily tests from running for ages:
https://github.com/thesofproject/sof/actions/runs/20048113632
```
Invalid workflow file: .github/workflows/daily-tests.yml#L42
error parsing called workflow
".github/workflows/daily-tests.yml"
-> "./.github/workflows/sparse-zephyr.yml"
(source branch with sha:e00764e7fbe3315c0d8e1fa87624aec4e37db7e3)
: (Line: 17, Col: 7): Unexpected value 'false'
```
Signed-off-by: Marc Herbert <marc.herbert@intel.com>1 parent e00764e commit 2bf8638
1 file changed
+3
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | 15 | | |
20 | 16 | | |
21 | 17 | | |
22 | 18 | | |
23 | 19 | | |
24 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
25 | 24 | | |
26 | 25 | | |
27 | 26 | | |
| |||
0 commit comments