File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,20 @@ jobs:
107
107
}
108
108
gh --version
109
109
110
+ - name : Install Git for Windows
111
+ # the GPU runner image does not have Git Bash pre-installed...
112
+ env :
113
+ # doesn't seem there's an easy way to avoid hard-coding it?
114
+ GFW_EXE_URL : https://github.com/git-for-windows/git/releases/download/v2.49.0.windows.1/PortableGit-2.49.0-64-bit.7z.exe
115
+ run : |
116
+ Invoke-WebRequest -Uri "$env:GFW_EXE_URL" -OutFile "PortableGit.7z.exe"
117
+ Start-Process 7z -Wait -Verbose -ArgumentList "x PortableGit.7z.exe -oPortableGit"
118
+ ls -l PortableGit
119
+ mv PortableGit\git-bash.exe PortableGit\bash.exe
120
+ echo "$(pwd).path\\PortableGit" >> $env:GITHUB_PATH
121
+ $env:Path += ";$(pwd).path\\PortableGit"
122
+ bash --version
123
+
110
124
- name : Download cuda-python & cuda.bindings build artifacts from the prior branch
111
125
if : ${{ env.SKIP_CUDA_BINDINGS_TEST == '1'}}
112
126
env :
You can’t perform that action at this time.
0 commit comments