Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
akade committed Oct 12, 2023
2 parents 9d5d6b1 + 791f7bc commit 814a673
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
16 changes: 8 additions & 8 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<ProductDependencies>
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="8.0.0-rtm.23509.5">
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="8.0.0-rtm.23511.16">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1</Sha>
<Sha>256bf22a3ddf920516752701da2b95e1847ff708</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.ILLink" Version="8.0.0-rtm.23509.5">
<Dependency Name="Microsoft.NET.ILLink" Version="8.0.0-rtm.23511.16">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1</Sha>
<Sha>256bf22a3ddf920516752701da2b95e1847ff708</Sha>
</Dependency>
<Dependency Name="System.Threading.Channels" Version="8.0.0-rtm.23509.5">
<Dependency Name="System.Threading.Channels" Version="8.0.0-rtm.23511.16">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1</Sha>
<Sha>256bf22a3ddf920516752701da2b95e1847ff708</Sha>
</Dependency>
<Dependency Name="Microsoft.Extensions.Logging" Version="8.0.0-rtm.23509.5">
<Dependency Name="Microsoft.Extensions.Logging" Version="8.0.0-rtm.23511.16">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1</Sha>
<Sha>256bf22a3ddf920516752701da2b95e1847ff708</Sha>
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
Expand Down
8 changes: 4 additions & 4 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
</PropertyGroup>
<!--Package versions-->
<PropertyGroup>
<MicrosoftNETILLinkTasksVersion>8.0.0-rtm.23509.5</MicrosoftNETILLinkTasksVersion>
<MicrosoftNETILLinkPackageVersion>8.0.0-rtm.23509.5</MicrosoftNETILLinkPackageVersion>
<MicrosoftNETILLinkTasksVersion>8.0.0-rtm.23511.16</MicrosoftNETILLinkTasksVersion>
<MicrosoftNETILLinkPackageVersion>8.0.0-rtm.23511.16</MicrosoftNETILLinkPackageVersion>
<BenchmarkDotNetVersion>0.13.9-nightly.20230908.70</BenchmarkDotNetVersion>
<SystemThreadingChannelsPackageVersion>8.0.0-rtm.23509.5</SystemThreadingChannelsPackageVersion>
<MicrosoftExtensionsLoggingPackageVersion>8.0.0-rtm.23509.5</MicrosoftExtensionsLoggingPackageVersion>
<SystemThreadingChannelsPackageVersion>8.0.0-rtm.23511.16</SystemThreadingChannelsPackageVersion>
<MicrosoftExtensionsLoggingPackageVersion>8.0.0-rtm.23511.16</MicrosoftExtensionsLoggingPackageVersion>
</PropertyGroup>
<!--Package names-->
<PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions scripts/benchmarks_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# gitpython (pip install --global gitpython)
# Ubuntu Version 22.04 if using Ubuntu
# May need llvm+clang 16 for MonoAOTLLVM (https://apt.llvm.org/)
# Wasm need jsvu installed and setup (No need to setup EMSDK, the tool does that automatically when building)
# Wasm runs need jsvu/v8 installed and setup. Latest v8 preferred, must be post --experimental-wasm-eh removal/enabled by default. (No need to setup EMSDK, the tool does that automatically when building)


import glob
Expand Down Expand Up @@ -436,7 +436,7 @@ def generate_single_benchmark_ci_args(parsed_args: Namespace, specific_run_type:
'--category-exclusion-filter', 'NoInterpreter', 'NoWASM', 'NoMono',
'--wasmDataDir', os.path.join(get_run_artifact_path(parsed_args, RunType.WasmInterpreter, commit), "wasm_bundle", "wasm-data"),
'--wasmEngine', parsed_args.wasm_engine_path,
'--wasmArgs', '\" --experimental-wasm-eh --expose_wasm --module\"',
'--wasmArgs', '\" --expose_wasm --module\"',
'--logBuildOutput',
'--generateBinLog'
]
Expand All @@ -450,7 +450,7 @@ def generate_single_benchmark_ci_args(parsed_args: Namespace, specific_run_type:
'--category-exclusion-filter', 'NoInterpreter', 'NoWASM', 'NoMono',
'--wasmDataDir', os.path.join(get_run_artifact_path(parsed_args, RunType.WasmAOT, commit), "wasm_bundle", "wasm-data"),
'--wasmEngine', parsed_args.wasm_engine_path,
'--wasmArgs', '\" --experimental-wasm-eh --expose_wasm --module\"',
'--wasmArgs', '\" --expose_wasm --module\"',
'--aotcompilermode', 'wasm',
'--logBuildOutput',
'--generateBinLog'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ internal static Dictionary<string, ProcessExecutionDetails> ExecuteLocally(GCPer
// Not checking Linux here since the local run only allows for Windows.
if (!File.Exists(Path.Combine(outputPath, traceName + ".etl.zip")))
{
AnsiConsole.MarkupLine($"[yellow bold] ({DateTime.Now}) The trace for the run wasn't successfully captured. Please check the log file for more details: {output} Full run details: {Path.GetFileNameWithoutExtension(configuration.Name)}: {runInfo.CorerunDetails.Key} for {runInfo.RunDetails.Key} [/]");
AnsiConsole.MarkupLine($"[yellow bold] ({DateTime.Now}) The trace for the run wasn't successfully captured. Please check the log file for more details: {Markup.Escape(output)} Full run details: {Path.GetFileNameWithoutExtension(configuration.Name)}: {runInfo.CorerunDetails.Key} for {runInfo.RunDetails.Key} [/]");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<GenerateResourceWarnOnBinaryFormatterUse>false</GenerateResourceWarnOnBinaryFormatterUse>
</PropertyGroup>

</Project>

0 comments on commit 814a673

Please sign in to comment.