Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Dec 15, 2025

The Azure Pipeline build_ci and publish_tag jobs were failing due to 2-minute timeouts insufficient for their operations.

Changes

  • Increased timeoutInMinutes from 2 to 10 minutes in the build_ci job
  • Increased timeoutInMinutes from 2 to 5 minutes in the publish_tag job
jobs:
  - job: build_ci
    displayName: CI Build
    timeoutInMinutes: 10  # was: 2
    
  - job: publish_tag
    displayName: Publish artifacts to GH
    timeoutInMinutes: 5  # was: 2

This allows adequate time for the complete CI workflow: package restore → build → NuGet pack → authentication → feed push in the build_ci job, and for downloading artifacts and publishing to GitHub releases in the publish_tag job.

Original prompt

This section details on the original issue you should resolve

<issue_title>Azure Pipeline is failing and NuGet package is not being published</issue_title>
<issue_description>It looks like the Azure Pipeline is currently broken, and as a result the latest version is not being packed as NuGet.

Could someone please take a look at the pipeline and fix the issue so we can get the prerelease NuGet package.</issue_description>

<agent_instructions>Please see the comment from @BZ-CO where he notes that the job fails if it runs for more than 2 minutes. </agent_instructions>

Comments on the Issue (you are @copilot in this section)

@vslee @BZ-CO can you verify if this worked?

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: vslee <366757+vslee@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix Azure Pipeline failure and NuGet publication Fix Azure Pipeline timeout for build_ci job Dec 15, 2025
Copilot AI requested a review from vslee December 15, 2025 00:20
@vslee vslee marked this pull request as ready for review December 15, 2025 00:21
@vslee vslee requested a review from jjxtra December 15, 2025 00:21
@vslee
Copy link
Collaborator

vslee commented Dec 15, 2025

@copilot for any other timeouts in the pipeline that are specified as 2 minutes, increase those to 5 mins

Co-authored-by: vslee <366757+vslee@users.noreply.github.com>
Copy link
Contributor Author

Copilot AI commented Dec 15, 2025

@copilot for any other timeouts in the pipeline that are specified as 2 minutes, increase those to 5 mins

Done! Increased the publish_tag job timeout from 2 to 5 minutes (commit 9604499). All 2-minute timeouts in the pipeline have now been addressed.

Copilot AI changed the title Fix Azure Pipeline timeout for build_ci job Fix Azure Pipeline timeouts for build_ci and publish_tag jobs Dec 15, 2025
Copilot AI requested a review from vslee December 15, 2025 00:27
@vslee vslee merged commit cd418d7 into main Dec 15, 2025
4 checks passed
@vslee vslee added the maintenance such as tests label Dec 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

maintenance such as tests

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Azure Pipeline is failing and NuGet package is not being published

3 participants