Commit 461479d
authored
Fix GHA CI Windows Path Limits (#451)
GHA Windows runners have an enviornment option LongPathsEnabled which defaults to true (1).
This can be tested by running (Get-ItemProperty "HKLM:System\CurrentControlSet\Control\FileSystem").LongPathsEnabled in a Windows runner.
This value isn't honored within bash shells on Windows and the path limit caused build errors in the Packaging Build workflow for Firestore targets.
This change removes 'bash' as the shell when building and instead executespython scripts/gha/build_desktop.py via the host operating system's default shell.1 parent 85ccba4 commit 461479d
1 file changed
+11
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
339 | 339 | | |
340 | 340 | | |
341 | 341 | | |
342 | | - | |
| 342 | + | |
343 | 343 | | |
344 | 344 | | |
345 | 345 | | |
346 | 346 | | |
347 | 347 | | |
348 | 348 | | |
349 | | - | |
350 | | - | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
351 | 359 | | |
352 | 360 | | |
353 | 361 | | |
| |||
0 commit comments