File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
.github/shared-actions/windows-bazel-test Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2222 with :
2323 wsl_firewall_interface : ' vEthernet (WSL (Hyper-V firewall))'
2424
25+ - name : Setup tmate session
26+ uses : mxschmitt/action-tmate@v3
27+ with :
28+ detach : true
29+
2530 - name : Installing pnpm (in WSL)
2631 run : npm install -g pnpm@9
2732 shell : wsl-bash {0}
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ async function transformDir(p) {
8686 await Promise . all ( directoriesToVisit . map ( ( d ) => transformDir ( d ) ) ) ;
8787}
8888
89- function exec ( cmd , maxRetries = 2 ) {
89+ function exec ( cmd , maxRetries = 3 ) {
9090 return new Promise ( ( resolve , reject ) => {
9191 childProcess . exec ( cmd , { cwd : rootDir } , ( error ) => {
9292 if ( error !== null ) {
@@ -119,7 +119,7 @@ try {
119119 // Re-link symlinks to work inside Windows.
120120 // This is done in batches to avoid flakiness due to WSL
121121 // See: https://github.com/microsoft/WSL/issues/8677.
122- const batchSize = 100 ;
122+ const batchSize = 75 ;
123123 for ( let i = 0 ; i < relinkFns . length ; i += batchSize ) {
124124 await Promise . all ( relinkFns . slice ( i , i + batchSize ) . map ( ( fn ) => fn ( ) ) ) ;
125125 }
You can’t perform that action at this time.
0 commit comments