Fix CPP native binary generation after ILCompiler 10.0.1 upgrade #1461
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Kernel Benchmark' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| Benchmark: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.x' | |
| include-prerelease: true | |
| - name: 'Inter version CPU benchmark' | |
| run: | | |
| cd Sources/Tests/DotnetBenchmark | |
| dotnet run -c Release CommonFunctionsInterVersion | |
| - name: 'Inter version RAM benchmark' | |
| run: | | |
| cd Sources/Tests/DotnetBenchmark | |
| dotnet run -c Release RAMUsageTest | |