Commit 51e655b
Fix WasmTestOnChrome: exclude browser/wasi from gen-debug-dump-docs.py helix post-command (#126789)
## Description
`WasmTestOnChrome` and related WASM CI jobs were failing because
`gen-debug-dump-docs.py` was scheduled as a Helix post-command for all
non-Windows CoreCLR targets, but the script is not present in the
correlation payload for `browser`/`wasi` targets.
### Changes
- **`src/libraries/sendtohelixhelp.proj`**: Added `browser` and `wasi`
exclusions to the non-Windows `HelixPostCommands` condition for
`gen-debug-dump-docs.py`, consistent with the existing pattern already
used for `TestEnvFileName` in the same file:
```xml
<!-- Before -->
<HelixPostCommands Condition="'$(TargetOS)' != 'windows'">
<!-- After -->
<HelixPostCommands Condition="'$(TargetOS)' != 'windows' and '$(TargetOS)' != 'browser' and '$(TargetOS)' != 'wasi'">
```
## Changes
- [x] `src/libraries/sendtohelixhelp.proj`
## Testing
Change is a build/CI pipeline configuration fix; validated by inspection
against the existing pattern in the same file.
Fixes #126706
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: danmoseley <6385855+danmoseley@users.noreply.github.com>
Co-authored-by: Dan Moseley <danmose@microsoft.com>1 parent 38af44d commit 51e655b
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
271 | 271 | | |
272 | 272 | | |
273 | 273 | | |
274 | | - | |
| 274 | + | |
275 | 275 | | |
276 | 276 | | |
277 | 277 | | |
| |||
0 commit comments