Skip to content

Commit ddf6297

Browse files
committed
Temporarily instrument Windows CI runner path search
1 parent 1813d52 commit ddf6297

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,12 @@ jobs:
220220
runs-on: ${{ matrix.os }}
221221

222222
steps:
223+
- name: Show PATH
224+
if: startsWith(matrix.os, 'windows')
225+
run: $Env:PATH -split ';'
226+
- name: Find git
227+
if: startsWith(matrix.os, 'windows')
228+
run: where.exe git
223229
- uses: actions/checkout@v4
224230
- name: Install rustup
225231
if: matrix.os == 'windows-11-arm'
@@ -253,6 +259,12 @@ jobs:
253259
runs-on: ${{ matrix.os }}
254260

255261
steps:
262+
- name: Show PATH
263+
if: startsWith(matrix.os, 'windows')
264+
run: $Env:PATH -split ';'
265+
- name: Find git
266+
if: startsWith(matrix.os, 'windows')
267+
run: where.exe git
256268
- name: Report version/build of Git in this runner image
257269
run: git version --build-options
258270
- name: Upgrade Git for Windows to latest stable release

0 commit comments

Comments
 (0)