jit-diff (and maybe more) broken by recent runtime build change from windows_nt to windows
Nobody has claimed this yet.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 25/100
Research direction
Start in src/jit-diff/jit-diff.cs at GetBuildOS and trace how its Windows_NT or Windows result is consumed. Determine the backwards-compatibility requirement for the recent runtime build naming change, then verify that jit-diff and any affected behavior work with the supported build names.
Written by the indexing model from the issue text.
Description
Not sure yet how we fix this in a backwards compatible fashion.
index b44e826..a95e5ce 100755
--- a/src/jit-diff/jit-diff.cs
+++ b/src/jit-diff/jit-diff.cs
@@ -94,7 +94,7 @@ private static string GetBuildOS(string platformMoniker)
switch (platformMoniker)
{
case "Windows":
- return "Windows_NT";
+ return "Windows";
case "Linux":
return "Linux";
case "OSX":
cc @dotnet/jit-contrib
- Dominant language
- C#
- Stars
- 161
- Forks
- 69
- Avg merge
- 1h 56m
- Merged PRs (30d)
- 1
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from dotnet/jitutils
-
Difficulty 2/5 1-2 days Newbie friendliness 62/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 45/100
-
Difficulty 3/5 1-2 days Newbie friendliness 35/100
-
Difficulty 4/5 3-5 days Newbie friendliness 35/100
-
Difficulty 3/5 1-2 days Newbie friendliness 35/100
Similar issues
-
type/automation type/tech-debt
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
-
t/bug
Difficulty 2/5 1-3 hours Newbie friendliness 82/100
-
ci-failure-cause test-failure
Difficulty 2/5 1-3 hours Newbie friendliness 82/100
-
area:auth FE mvp P3
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
klasolsson81/jobbliggaren#1788 ·