We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f099ff commit 6a229a1Copy full SHA for 6a229a1
.github/workflows/ci.yml
@@ -65,6 +65,7 @@ jobs:
65
defaults:
66
run:
67
shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }}
68
+ working-directory: ${{ contains(matrix.os, 'windows') && 'D:/a/rust/rust' }}
69
timeout-minutes: 240
70
env:
71
CI_JOB_NAME: ${{ matrix.image }}
@@ -80,6 +81,12 @@ jobs:
80
81
# Check the `calculate_matrix` job to see how is the matrix defined.
82
include: ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
83
steps:
84
+ - name: create working dir for windows runner
85
+ if: contains(matrix.os, 'windows')
86
+ run: |
87
+ cd /d/
88
+ mkdir -p a/rust/rust
89
+
90
- if: contains(matrix.os, 'windows')
91
uses: msys2/[email protected]
92
with:
0 commit comments