We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4cedec + 7e63636 commit 8a8c508Copy full SHA for 8a8c508
.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,10 @@ 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: cd /d/ && mkdir -p /a/rust/rust
87
+
88
- if: contains(matrix.os, 'windows')
89
uses: msys2/[email protected]
90
with:
0 commit comments