We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd91867 commit a5f8a95Copy full SHA for a5f8a95
1 file changed
tasks/infra/agent/integrationTests_windows.yml
@@ -1,7 +1,7 @@
1
- test_name: InfrastructureVersionPresentWindows
2
dockerfile_lines:
3
- ADD https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.msi newrelic-infra.msi
4
- - RUN ["msiexec.exe", "/qn", "/i", "newrelic-infra.msi"]
+ - RUN $p = Start-Process msiexec.exe -ArgumentList '/qn','/i','newrelic-infra.msi','/l*v','C:\install.log' -Wait -PassThru; if (Test-Path C:\install.log) { Get-Content C:\install.log } else { Write-Host 'no MSI log produced' }; if ($null -ne $p.ExitCode -and $p.ExitCode -ne 0) { exit $p.ExitCode }
5
log_entry_expected:
6
- Info.*Infra/Agent/Version.*
7
log_entry_not_expected:
0 commit comments