Skip to content

Commit 6510d30

Browse files
committed
Auto merge of #133033 - klensy:win.dot, r=<try>
turn creating 8dot3 names off for windows for speed r? `@ghost` try-job: x86_64-msvc
2 parents c82e0df + 4018087 commit 6510d30

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
defaults:
6666
run:
6767
shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }}
68+
working-directory: ${{ contains(matrix.os, 'windows') && 'D:/a/rust/rust' }}
6869
timeout-minutes: 240
6970
env:
7071
CI_JOB_NAME: ${{ matrix.image }}
@@ -80,6 +81,10 @@ jobs:
8081
# Check the `calculate_matrix` job to see how is the matrix defined.
8182
include: ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
8283
steps:
84+
- name: create working dir for windows runner
85+
if: contains(matrix.os, 'windows')
86+
run: pwd && cd /d/ && pwd && mkdir -p /a/rust/rust
87+
8388
- if: contains(matrix.os, 'windows')
8489
uses: msys2/[email protected]
8590
with:

0 commit comments

Comments
 (0)