azure-devopsazure-pipelines

My Azure DevOps CD pipeline is stuck in a queue forever


I am building a CD azure pipeline to do a deploy to an environment. Using a yaml file. It is almost a copy of another pipeline I made and I have no clue why it gets stuck in the queue for more than 12+ hours when all my agents are idle.

3 days after the job is still in queue

enter image description here


Solution

  • The problem is this line in my yaml file

      jobs:
        - deployment: Deploy
    

    You are not allowed to have the value "Deploy" or Deployment" here. Very obscure but when I changed it to "DeployWeb" it worked right away