Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BUILDS are missing from azure devops

Tags:

azure-devops

Where are the builds? How do I create a build?

When I go to pipelines, I do not see builds:

enter image description here

I am a member of the build administrators group.

From VS, I can go to view builds in browser:

enter image description here

That correctly takes me to:

https://myorg.visualstudio.com/myproject/_build

Yet, it's still missing builds:

enter image description here

I can even query for a specific build:

https://myorg.visualstudio.com/myproject/_build?definitionId=75&view=runs

And here's what I get:

enter image description here

Where are the builds? How do I create a build?

like image 657
Alex Gordon Avatar asked Oct 25 '19 17:10

Alex Gordon


People also ask

What should I set up for Azure DevOps organization?

The name of the Azure DevOps organization. Version of the API to use. This should be set to '6.0' to use this version of the api. The maximum number of builds to return. If specified, filters to builds that built branches that built this branch. A comma-delimited list that specifies the IDs of builds to retrieve.

Why is my NET Core build failing for Azure DevOps?

.NET Core build failing for Azure DevOps? Check if there is any assembly reference and replace it with proper NuGet package. We were configuring CI/CD for one of our .NET Core 3.1 API project in the Azure DevOps.

Does CI/CD work with Azure DevOps?

We were configuring CI/CD for one of our .NET Core 3.1 API project in the Azure DevOps. When trying dotnet build from our local workstation, it was successfull but when CI triggered the build on the Azure DevOps, it was failing.

Why is my NuGet package not working in Azure DevOps?

Check if there is any assembly reference and replace it with proper NuGet package. We were configuring CI/CD for one of our .NET Core 3.1 API project in the Azure DevOps.


1 Answers

Builds are now called Pipelines.

To create a Pipeline: https://docs.microsoft.com/en-us/azure/devops/pipelines/create-first-pipeline?view=azure-devops&tabs=tfs-2018-2

like image 50
TrevorBrooks Avatar answered Sep 21 '22 21:09

TrevorBrooks