Skip to content

Commit

Permalink
Merge branch 'master' into nacho/IastUnitTestsDebugCI
Browse files Browse the repository at this point in the history
  • Loading branch information
NachoEchevarria authored Feb 7, 2025
2 parents eb0283d + 8a195ac commit fc0ef34
Show file tree
Hide file tree
Showing 17 changed files with 1,404 additions and 970 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,12 @@ std::chrono::seconds GetMachineBootTime()
auto pos = sv.find("btime");
if (std::string_view::npos != pos)
{
auto pos2 = strchr(sv.data() + pos, ' ') + 1;
auto pos2 = strchr(sv.data() + pos, ' ');
if (pos2 == nullptr)
break;

// skip whitespaces
pos2++;
pos2 = pos2 + strspn(pos2, " ");
machineBootTime = std::atoll(pos2);
break;
Expand Down
300 changes: 150 additions & 150 deletions tracer/build/PackageVersionsLatestMajors.g.props

Large diffs are not rendered by default.

522 changes: 414 additions & 108 deletions tracer/build/PackageVersionsLatestMinors.g.props

Large diffs are not rendered by default.

300 changes: 150 additions & 150 deletions tracer/build/PackageVersionsLatestSpecific.g.props

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tracer/build/_build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<!-- Explicitly override the version of octokit used by Nuke -->
<PackageReference Include="Octokit" Version="10.0.0" />
<PackageReference Include="Perfolizer" Version="0.2.1" />
<PackageReference Include="Sep" Version="0.5.2" />
<PackageReference Include="Sep" Version="0.7.0" />
<PackageReference Include="ByteSize" Version="2.1.0" />
<!-- Enable binary serialization for .NET 9 -->
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="9.0.0" Condition="$(USE_NATIVE_SDK_VERSION) != 'true'" />
Expand Down
Loading

0 comments on commit fc0ef34

Please sign in to comment.