Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add simple CI leg to verify that all microbenchmarks can be build for 3.1, 6.0 and 7.0 #2732

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ jobs:
channels: # for Roslyn jobs we want to check .NET Core 3.1 and 5.0 only
- main

# Ubuntu 1804 x64 micro benchmarks
# Ubuntu 1804 x64 micro benchmarks main
- template: /eng/performance/benchmark_jobs.yml
parameters:
osName: ubuntu
Expand All @@ -324,6 +324,25 @@ jobs:
channels: # for public jobs we want to make sure that the PRs don't break any of the supported frameworks
- main

# Ubuntu 1804 x64 micro benchmarks older TFMs
- template: /eng/performance/benchmark_jobs.yml
parameters:
osName: ubuntu
osVersion: 1804
kind: micro_old_tfm
architecture: x64
pool:
vmImage: ubuntu-latest
machinePool: Open
queue: Ubuntu.1804.Amd64.Open
container: ubuntu_x64_build_container
csproj: src/benchmarks/micro/MicroBenchmarks.csproj
runCategories: 'LINQ' # run only few simple benchmarks to ensure we can build the project using old SDK
channels: # for public jobs we want to make sure that the PRs don't break any of the supported frameworks
- 7.0
- 6.0
- 3.1

# Ubuntu 1804 x64 NativeAOT micro benchmarks
- template: /eng/performance/benchmark_jobs.yml
parameters:
Expand Down