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 1f099ff commit 939bd1fCopy full SHA for 939bd1f
.github/workflows/ci.yml
@@ -65,6 +65,8 @@ jobs:
65
defaults:
66
run:
67
shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }}
68
+ # linux not exist
69
+ working-directory: d:/a/rust/rust
70
timeout-minutes: 240
71
env:
72
CI_JOB_NAME: ${{ matrix.image }}
@@ -80,6 +82,13 @@ jobs:
80
82
# Check the `calculate_matrix` job to see how is the matrix defined.
81
83
include: ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
84
steps:
85
+ - name: create working dir for windows runner
86
+ if: contains(matrix.os, 'windows')
87
+ shell: bash
88
+ run: |
89
+ echo ${{ github.workspace }}
90
+ mkdir -p d:/a/rust/rust
91
+
92
- if: contains(matrix.os, 'windows')
93
uses: msys2/[email protected]
94
with:
0 commit comments