Skip to content

Commit

Permalink
Fix AbsolutePath comparison in CompileSamplesLinux
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanotti committed Dec 15, 2023
1 parent 39b7525 commit 44de993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracer/build/_build/Build.Steps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ void RunWindowsIisIntegrationTests(Project project)
.Concat(regressionProjects)
.Concat(instrumentationProjects)
.Concat(debuggerProjects)
.Select(path => (path, project: Solution.AllProjects.First(p => p.Name == path)))
.Select(path => (path, project: Solution.AllProjects.First(p => p.Path == path)))
.Where(x => (IncludeTestsRequiringDocker, x.project) switch
{
// filter out or to integration tests that have docker dependencies
Expand Down

0 comments on commit 44de993

Please sign in to comment.