我想从管道本身获取构建时间线并将其提供给 REST API 以用于记录目的。
到目前为止,我已经尝试使用 powershell 创建一个调用 _apis/build/builds/$Env:BUILD_BUILDID/timeline 的步骤,但我在 Invoke-RestMethod :底层连接已关闭 错误处停止。
你知道是否有办法实现这一目标吗?
对我来说,添加
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
解决了,这对我来说很奇怪,因为这是一个托管管道,在 Linux 虚拟机中运行。