Error Encountered When Using High-Performance macOS Images in Azure Pipelines #10155
-
I would like to test higher performance images for Builds in Azure Pipelines. pool:
vmImage: 'macos-14-xlarge' However, I am encountering the following error: ##[warning]An image label with the label macos-14-xlarge does not exist.
##[error]The remote provider was unable to process the request. What would be the procedure for using these higher performance images? Thank you in advance for your assistance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You are currently using the GitHub Actions runner label "macos-14-xlarge" in your Azure Pipeline, hence it's throwing macos-14-xlarge does not exist. Please change it to "macOS-latest" or "macOS-14." So that It will be worked fine.For more information, please refer to the article: Azure DevOps Hosted Agents. |
Beta Was this translation helpful? Give feedback.
You are currently using the GitHub Actions runner label "macos-14-xlarge" in your Azure Pipeline, hence it's throwing macos-14-xlarge does not exist. Please change it to "macOS-latest" or "macOS-14." So that It will be worked fine.For more information, please refer to the article: Azure DevOps Hosted Agents.