Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support pipeline artifacts when using streaming publishing #15595

Merged
merged 4 commits into from
Mar 7, 2025

Conversation

mmitche
Copy link
Member

@mmitche mmitche commented Mar 5, 2025

Pipeline artifacts were not supported previously, due to differences in how the download URL needs to be determined and constructed. This was blocking at least a partial move of the VMR onto pipeline artifacts, and generally a move onto pipeline artifacts for .NET overall. To fix this, I've implemented support for both. The system will first use the artifact API to determine what the artifact type is, then construct a helper for future usage to obtain a download url given a file name.

  • Added tests for the new functionality and factored out some old tests into another class
  • Removed old container id calls and method.

To double check:

Pipeline artifacts were not supported previously, due to differences in how the download URL needs to be determined and constructed. This was blocking at least a partial move of the VMR onto pipeline artifacts, and generally a move onto pipeline artifacts for .NET overall. To fix this, I've implemented support for both. The system will first use the artifact API to determine what the artifact type is, then construct a helper for future usage to obtain a download url given a file name.

- Added tests for the new functionality and factored out some old tests into another class
- Removed old container id calls and method.
@mmitche mmitche requested review from hoyosjs and a team March 5, 2025 23:05
string uri =
$"{AzureDevOpsBaseUrl}/{AzureDevOpsOrg}/{AzureProject}/_apis/build/builds/{BuildId}/artifacts?api-version={AzureDevOpsFeedsApiVersion}";
// Look up or create a helper for the specified artifact type.
if (!_artifactUrlHelpers.TryGetValue(artifactName, out IArtifactUrlHelper helper))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can GetOrAdd instead be used here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I played around with it and went with a different approach. Since the thing does make an http call, it's a waste to accidentally do it more than once due to threading. So I stuck a lock in there.

bool setAutomaticDecompression,
string projectName = null,
string versionOverride = null)
private HttpClient CreateAzdoClient(string tokenOverride = null)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We no longer enforce a handler timeout?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

huh - somehow I missed - my bad.

@mmitche
Copy link
Member Author

mmitche commented Mar 7, 2025

bool setAutomaticDecompression,
string projectName = null,
string versionOverride = null)
private HttpClient CreateAzdoClient(string tokenOverride = null)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

huh - somehow I missed - my bad.

@mmitche mmitche merged commit 8b6565c into dotnet:main Mar 7, 2025
11 checks passed
@mmitche mmitche deleted the pipeline-artifact-streaming-support branch March 7, 2025 19:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants