|
65 | 65 | defaults:
|
66 | 66 | run:
|
67 | 67 | shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }}
|
| 68 | + working-directory: ${{ contains(matrix.os, 'windows') && 'D:/a/rust/rust' }} |
68 | 69 | timeout-minutes: 240
|
69 | 70 | env:
|
70 | 71 | CI_JOB_NAME: ${{ matrix.image }}
|
|
80 | 81 | # Check the `calculate_matrix` job to see how is the matrix defined.
|
81 | 82 | include: ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
|
82 | 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 | + |
83 | 90 | - if: contains(matrix.os, 'windows')
|
84 | 91 | uses: msys2/setup-msys2@v2.22.0
|
85 | 92 | with:
|
|
0 commit comments