如何更新 vsts 构建代理中的系统功能?
How to update a system capability in a build agent in vsts?
我想将我的构建代理中的 'java_home' 功能升级到 jdk8,因为这是将 'Sonarqube Analysis' 集成到我的 CI 构建中所必需的。
如何在 vsts 中更新相同内容?
我想将 java_home 的路径(但在 vsts 中似乎无法编辑)更改为带有 jdk8 的路径,或者仅升级当前文件夹下的 java。
我认为,您应该更新 CI 构建机器上的 JAVA_HOME 环境变量并重新启动构建代理。能力将自动更新:https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/agents?view=azure-devops#capabilities
The agent software automatically determines various system capabilities such as the name of the machine, type of operating system, and versions of certain software installed on the machine. Also, environment variables defined in the machine automatically appear in the list of system capabilities.
我想将我的构建代理中的 'java_home' 功能升级到 jdk8,因为这是将 'Sonarqube Analysis' 集成到我的 CI 构建中所必需的。
如何在 vsts 中更新相同内容?
我想将 java_home 的路径(但在 vsts 中似乎无法编辑)更改为带有 jdk8 的路径,或者仅升级当前文件夹下的 java。
我认为,您应该更新 CI 构建机器上的 JAVA_HOME 环境变量并重新启动构建代理。能力将自动更新:https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/agents?view=azure-devops#capabilities
The agent software automatically determines various system capabilities such as the name of the machine, type of operating system, and versions of certain software installed on the machine. Also, environment variables defined in the machine automatically appear in the list of system capabilities.