We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc13f63 commit fa8a18dCopy full SHA for fa8a18d
.github/workflows/cpp-packaging.yml
@@ -424,6 +424,17 @@ jobs:
424
verbose_flag=--verbose
425
fi
426
echo "VERBOSE_FLAG=${verbose_flag}" >> $GITHUB_ENV
427
+
428
+ # Install the latest version of GNU patch to avoid using the problematic patch.exe
429
+ # from Strawberry Perl which sometimes crashes (Googlers see b/236958574).
430
+ - name: Install patch.exe (Windows)
431
+ if: startsWith(matrix.os, 'windows')
432
+ uses: nick-invision/retry@v2
433
+ with:
434
+ timeout_minutes: 4
435
+ max_attempts: 3
436
+ shell: bash
437
+ command: choco install patch --yes --nocolor
438
439
# Run the build in the host OS default shell since Windows can't handle long path names in bash.
440
- name: Build desktop SDK
0 commit comments