Skip to content

Commit 742ad82

Browse files
committed
disable debuging of the install
1 parent 8aed9ad commit 742ad82

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/windows.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ jobs:
3131
shell: pwsh
3232
run: |
3333
$msifile="c:\${{ env.MSI }}"
34-
New-Item -Path 'C:\test.log' -ItemType File
3534
(New-Object System.Net.WebClient).DownloadFile("http://monetdb.org/testweb/web/${{ env.MSI }}","$msifile");
36-
#$procMain = Start-Process "$msifile" -ArgumentList '/quiet /passive /qn /norestart INSTALLLEVEL=1000 MSIRMSHUTDOWN=2' -Wait
37-
$procMain = Start-Process "$msifile" -ArgumentList '/quiet /passive /qn /norestart INSTALLLEVEL=1000 MSIRMSHUTDOWN=2 /L*xv c:\test.log'
38-
$procLog = Start-Process powershell 'Get-Content -Path c:\test.log -Wait' -NoNewWindow -PassThru
39-
$procMain.WaitForExit()
40-
$procLog.Kill()
35+
# for debug comment previous line and use the commented out lines (except the Install-Binary one)
36+
#New-Item -Path 'C:\test.log' -ItemType File
37+
$procMain = Start-Process "$msifile" -ArgumentList '/quiet /passive /qn /norestart INSTALLLEVEL=1000 MSIRMSHUTDOWN=2' -Wait
38+
#$procMain = Start-Process "$msifile" -ArgumentList '/quiet /passive /qn /norestart INSTALLLEVEL=1000 MSIRMSHUTDOWN=2 /L*xv c:\test.log'
39+
#$procLog = Start-Process powershell 'Get-Content -Path c:\test.log -Wait' -NoNewWindow -PassThru
40+
#$procMain.WaitForExit()
41+
#$procLog.Kill()
4142
# Install-Binary -Url "http://monetdb.org/testweb/web/${{ env.MSI }}" -Name "${{ env.MSI }}" -ArgumentList "/norestart /quiet /passive /qn INSTALLLEVEL=1000"
4243
-
4344
name: check monetdb

0 commit comments

Comments
 (0)