- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道是否有人通过PowerShell脚本通过TFS 2015的Rest API(vNext)下载该构建ID的所有当前构建日志(到当前步骤),为每个记录的构建步骤创建单独的文本文件,并压缩所有文本文件?
或者,如果已经有一种获取下载URL的方式(在构建后)执行“将所有日志下载为zip”链接已经执行的方法,那么如何在PowerShell脚本中获取它?
我可以花一点时间自己做,但是我想问一下,因为某人必须已经具有此功能,如果有,请分享。
最佳答案
回答我自己的帖子:
好的,所以我继续并花了一些时间编写一个Powershell脚本,该脚本完全可以实现我想要的功能,该脚本实质上复制了TFS 2015(vNext)所做的“将所有日志以zip下载”功能。
您可以将其放入正在运行的构建中的某个步骤中,也可以对其进行修改以在运行的构建之后作为构建定义中的后期构建步骤来运行。
区别在于正在运行的构建中,它只会使您登录到该Powershell脚本步骤之前的步骤。使用此powershell脚本进行后期构建定义可让您获取所有日志。
我选择不使用构建后定义,因为此步骤是我正在运行的构建定义中的最后一个步骤,并且后续步骤对于获取日志信息来说是无关紧要的(例如,我的最后两个步骤是CreateZippedLogs.ps1和Copy压缩日志到文件服务器)。
仅供引用,在撰写本文时,我正在使用本地TFS 2015(更新3)。将Invoke-RestMethod行中的-UseDefaultCredentials替换为适合您情况的适当授权证书。
这是CreateZippedLogs.ps1,根据您的喜好对其进行修改,然后享受:
[CmdletBinding()]
param()
# Create base URI for the REST API
$baseURI = $Env:SYSTEM_TEAMFOUNDATIONCOLLECTIONURI + $Env:SYSTEM_TEAMPROJECT + "/_apis/"
# Get Build ID from the environment variable
$buildID = $Env:BUILD_BUILDID
# Build Timeline URI for $Env:BUILD_BUILDID
$buildTimelineURI = "$baseURI/build/builds/$buildID/timeline`?api-version=2.0"
# Output intent to create Zipped Log content for this build id
Write-Output "Attempting to create Zipped Log content for Build ID $buildID from URL: ""$buildTimelineURI"""
# Get sorted build timeline (ascending by default)
$buildTimeline = (Invoke-RestMethod -Uri $buildTimelineURI -UseDefaultCredentials).records | Sort-Object { $_.log.id }
# Get log count
$logsCount = $buildTimeline.Count # the number of timeline records (i.e. logs in the array)
# Remove sub-staging folder recursively for the logs
# Note: $Env:My_BuildLabel is defined as "$Env:BUILD_DEFINITIONNAME`_$Env:BUILD_BUILDNUMBER" for my builds; use whatever name is appropriate for your builds
$singleLogFileFolder = "$Env:BUILD_ARTIFACTSTAGINGDIRECTORY\$Env:My_BuildLabel`_Logs"
Remove-Item "$singleLogFileFolder" -recurse -ErrorAction SilentlyContinue -Verbose
# Remove any previously created Zip file with the same filename that we are about to create
Remove-Item "$singleLogFileFolder.zip" -ErrorAction SilentlyContinue -Verbose
# If number of logs in the array is > 0, create sub-staging folders for the logs
if ($logsCount -gt 0)
{
# First, a top-level folder to hold all logs in a single .txt file
New-Item -ItemType directory -Path "$singleLogFileFolder" -ErrorAction Stop -Verbose
$stepLogsSingleFile = "$singleLogFileFolder\1_Build.txt"
# Second, a subfolder to hold individual build step log files
$stepLogFilesFolder = "$singleLogFileFolder\Build"
New-Item -ItemType directory -Path "$stepLogFilesFolder" -ErrorAction Stop -Verbose
}
else
{
# Output that there were no logs found for this Build ID
Write-Output "No logs found for Build ID $buildID"
Exit 0 # Exit successfully
}
# Get list of invalid filename characters (in a regex string)
$invalidFilenameCharactersRegexString = "[{0}]+" -f [regex]::Escape(([System.IO.Path]::GetInvalidFileNameChars() -join ""))
# Output progress
Write-Output "Getting Log content and saving to files:"
# Iterate through each record in the build timeline array
foreach ($timelineRecord in $buildTimeline)
{
# Extract url for each log
$logURL = $timelineRecord.log.url
# Don't try to get empty log URL's
if ([string]::IsNullOrWhiteSpace($logURL))
{
continue
}
# Get log content
$logContent = (Invoke-RestMethod -Uri $logURL -UseDefaultCredentials).value
# Append step log output to the single file (not -Verbose because it duplicates information)
$logContent | Out-File "$stepLogsSingleFile" -Append
# Get log id
$logID = $timelineRecord.log.id
# Remove any invalid filename characters from the step name
$stepName = $timelineRecord.name -replace "$invalidFilenameCharactersRegexString", ""
# Create a step log output filename appropriate to the step number and name
$stepLogFile = "$stepLogFilesFolder\$logID`_$stepName`.txt"
# Save the step log content
$logContent | Out-File "$stepLogFile" -Verbose
}
Write-Output "Compressing Log files:"
if ($PSVersionTable.PSVersion.Major -lt 5)
{
Add-Type -assembly "system.io.compression.filesystem"
[io.compression.zipfile]::CreateFromDirectory($singleLogFileFolder, $singleLogFileFolder + ".zip")
}
else
{
Compress-Archive "$singleLogFileFolder\*" -DestinationPath "$singleLogFileFolder.zip" -Verbose
}
# ----------------------------------------------------------
# Remove temporary sub-staging folder recursively for the logs (don't leave it hanging around)
Write-Output "Removing temporary Log folders and files:"
Remove-Item "$singleLogFileFolder" -recurse -ErrorAction SilentlyContinue -Verbose
关于powershell - 通过powershell获取压缩的TFS 2015(vNext)构建输出日志(就像构建后的下载链接一样),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39715860/
我正在寻找实现 PowerShell 提供程序 在 电源外壳。 我一直在想,如果我只是定义类型,然后将它们导入我的 session (导入模块),我应该能够让它们可用。 例如,这个 不工作但它沿着我想
我创建的脚本使用了组件,这些组件仅在32位版本的Powershell中可用。 默认情况下,Windows使用Powershell x64执行脚本,这会导致一些错误。 是一种在脚本开头设置值以强制Win
是否可以从 Powershell 中检测它是否是嵌套 shell? 如果我打开 Powershell 或 cmd.exe 窗口,然后输入 powershell 在那里,是否有一个神奇的 $host.s
随着 PowerShell Core 的发布,应用程序在使用托管自动化库 (system.management.automation) 时如何选择调用哪个版本的 Powershell(Powershe
最近,我加入了我企业的 Windows 团队,凭借我的开发人员背景(一般是 Java、.NET 和 Web),我很快就对 PowerShell 产生了兴趣。我可以看到它比普通的旧批处理文件、VB 更有
假设我有一个 powershell 脚本,它在我当前路径的相对路径中包含一个 Powershell 哈希。让我们称之为“name.ps1”,它包含: $names = @{ "bob" = "b
我想为我正在构建的自定义 Powershell Commandlet 使用 SqlServerCmdletSnapin。如果我将以下代码添加到 PSM1 的开头: if ( (Get-PSSnapin
如何调用从 PowerShell 脚本中获取命名参数的 PowerShell 脚本? foo.ps1: param( [Parameter(Mandatory=$true)][String]$a=''
我即将为 Windows 管理员编写一个 PowerShell 脚本,以帮助他们完成与部署 Web 应用程序相关的某些任务。 有什么理由让我应该赞成或排除开发 PowerShell 模块 (.psm1
我的 powershell 模块有一个函数,我希望它返回一个非零退出代码。但是,作为一个模块函数,当我运行 Import-Module 时,它会加载到 powershell 控制台的上下文中。所以,当
我在这个问题上花了最后 4 个小时,非常感谢您提供的任何意见。 我需要使用不同的凭据调用 powershell 脚本并将参数传递给该脚本。 安装 WISEScript 中包装的程序后,此脚本开始收集机
我有一个场景,我需要将 powershell 命令的命令和输出转发到另一个进程以进行日志记录和处理。 我希望这个控制台尽可能接近 powershell,因此不希望将它简单地托管在另一个控制台程序中。
我正在尝试让一个主 PowerShell 脚本运行所有其他脚本,同时等待 30-60 秒以确保完成任务。我尝试过的所有其他操作都不会停止/等待第一个脚本及其进程完成,然后才能同时完成所有其他脚本,并且
我正在编写一个脚本来使用多个 plink (PuTTY) session 作为 Windows 版本的 clustersh。然而,我陷入困境,因为我想从 powershell 打开多个 Powersh
我读了这个答案:How to Open Powershell from Powershell start powershell 这将打开基础的大分辨率 PS 实例。如何打开 PS(x86)? 最佳答案
我很想知道我们是否可以在 Powershell 中做到这一点。 使用 Out-File 命令,我们可以通过管道将其输出写入文件。这样我就可以将我所有的历史命令发送到一个文本文件中。 问题是我可以在每次
我在 about_Pipelines 阅读了有关 PowerShell 中的管道工作原理的信息,并了解到管道一次传送一个对象。 所以,这个 Get-Service | Format-Table -Pr
我正在尝试像这样从 powershell 启动一个进程:- $proc = (start-process $myExe -argumentList '/myArg True' -windowStyle
## To run the script # .\get_status.ps1 -Hostname -Service_Action -Service_Name #$Hostname = "hos
让我们使用 powershell 命令 Write-Host "red text"-Fore red这会在红色前景中显示“红色文本”。 但是,您希望文本以稍微亮一点的方式显示字体颜色,浅红色。 有没有
我是一名优秀的程序员,十分优秀!