-
Notifications
You must be signed in to change notification settings - Fork 132
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
[release 9.0.1xx] VerifyVersionFile
Failing Due to Mismatched Version
#4682
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
1 similar comment
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
The expected SDK version is being pulled as the unique, non-stable version. I think that to fix this we can either 1) adjust the cc @dotnet/source-build |
This should work fine - I have fixed similar issue in the past: dotnet/sdk@70c717b, PR: dotnet/installer#17819 SDK version file contains both stable and non-stable versions, here's a sample content from one of the recent SDK builds:
|
The issue is with version in PSB archive, it is |
Fixed with dotnet/sdk#44362 New builds are green, i.e.: https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=2566974 |
Regression caused by dotnet/sdk#44289
The
SourceBuiltArtifactsTests.VerifyVersionFile
is failing in all 9.0.1xx builds because the test expects the SDK version to be9.0.100-rtm.24517.1
but it is9.0.100
.The expected version is pulled from the source-built SDK, and the actual version is pulled from the private-source-built artifacts. This means that the SDK version is still
9.0.100-rtm.24517.1
.cc @marcpopMSFT
The text was updated successfully, but these errors were encountered: