Skip to content

Commit daeb7bc

Browse files
committed
Temporarily instrument Windows CI runner path search
1 parent 4fe0fc4 commit daeb7bc

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
- uses: dtolnay/rust-toolchain@stable
225231
- uses: Swatinem/rust-cache@v2
@@ -250,6 +256,12 @@ jobs:
250256
runs-on: ${{ matrix.os }}
251257

252258
steps:
259+
- name: Show PATH
260+
if: startsWith(matrix.os, 'windows')
261+
run: $Env:PATH -split ';'
262+
- name: Find git
263+
if: startsWith(matrix.os, 'windows')
264+
run: where.exe git
253265
- uses: actions/checkout@v4
254266
- uses: dtolnay/rust-toolchain@stable
255267
- uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)