We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd6036 commit 1c8d7a8Copy full SHA for 1c8d7a8
1 file changed
.github/workflows/test-wheel-windows.yml
@@ -114,12 +114,10 @@ jobs:
114
7Z_URL: https://www.7-zip.org/a/7z2409-x64.msi
115
run: |
116
Invoke-WebRequest -Uri "$env:7Z_URL" -OutFile "7z_installer.msi"
117
- Start-Process msiexec.exe -Wait -Verbose -ArgumentList '/i "7z_installer.msi" /q INSTALLDIR="$((Get-Location).Path)\7-Zip"'
118
- #ls -l 7-Zip
119
- #Get-Location
120
- ls
121
- echo "$((Get-Location).Path)\7-Zip" >> $env:GITHUB_PATH
122
- $env:Path += ";$((Get-Location).Path)\7-Zip"
+ Start-Process msiexec.exe -Wait -Verbose -ArgumentList '/i "7z_installer.msi" /q INSTALLDIR="C:\Program Files\7-Zip" /qn'
+ ls -l "C:\\Program Files\7-Zip"
+ echo "C:\\Program Files\7-Zip" >> $env:GITHUB_PATH
+ $env:Path += ";C:\\Program Files\7-Zip"
123
7z --version
124
125
- name: Install Git for Windows
0 commit comments