Merge pull request #1383 from zabbix/trunk_windows

Updated build process for Zabbix agent (windows)
This commit is contained in:
Alexey Pustovalov 2024-05-20 17:29:46 +09:00 committed by GitHub
commit ad95a1f1c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -180,9 +180,9 @@ RUN Set-Location -Path $env:SystemDrive\.; `
` `
Write-Host 'Removing downloaded...'; ` Write-Host 'Removing downloaded...'; `
Remove-Item -Force -Recurse $env:TEMP\*; ` Remove-Item -Force -Recurse $env:TEMP\*; `
Write-Host 'Build environment is ready...'; ` Write-Host 'Build environment is ready...';
`
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; ` RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; `
` `
New-Item -ItemType directory -Path $env:BUILD_OUTPUT -Force | Out-Null; ` New-Item -ItemType directory -Path $env:BUILD_OUTPUT -Force | Out-Null; `
New-Item -ItemType directory -Path $env:BUILD_SRC -Force | Out-Null; ` New-Item -ItemType directory -Path $env:BUILD_SRC -Force | Out-Null; `