Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/functional-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,18 @@ jobs:
shell: cmd
continue-on-error: true
run: |
echo === GVFS Version ===
"C:\Program Files\VFS for Git\GVFS.exe" version
echo === GVFS Version (via Current junction) ===
"C:\Program Files\VFS for Git\Current\GVFS.exe" version
echo === GVFS Version (via PATH) ===
gvfs version
echo === Service Status ===
sc query GVFS.Service
echo === List Mounted ===
"C:\Program Files\VFS for Git\GVFS.exe" service --list-mounted
"C:\Program Files\VFS for Git\Current\GVFS.exe" service --list-mounted
echo === Directory Layout ===
dir "C:\Program Files\VFS for Git" /B
dir "C:\Program Files\VFS for Git\Current" /B 2>nul
dir "C:\Program Files\VFS for Git\Versions" /B 2>nul

- name: ProjFS details (post-install)
if: steps.skip.outputs.result != 'true'
Expand All @@ -202,7 +208,7 @@ jobs:
shell: cmd
timeout-minutes: 60
run: |
SET PATH=C:\Program Files\VFS for Git;%PATH%
SET PATH=C:\Program Files\VFS for Git\Current;%PATH%
SET GIT_TRACE2_PERF=C:\temp\git-trace2.log
ft\GVFS.FunctionalTests.exe /result:TestResult.xml --ci --slice=${{ matrix.nr }},12

Expand Down
Loading
Loading