Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 10 additions & 8 deletions build/prbenchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,10 @@ extends:
steps:
- checkout: dotnet-crank
path: crank
workspaceRepo: true
fetchDepth: 1
displayName: Checkout dotnet-crank
- powershell: dotnet build --framework net8.0 -c release $(Pipeline.Workspace)/crank/src/Microsoft.Crank.PullRequestBot/
- powershell: dotnet build --framework net8.0 -c release src/Microsoft.Crank.PullRequestBot/
displayName: Build PR benchmarks
- checkout: self
fetchDepth: 1
Expand All @@ -89,7 +90,7 @@ extends:
scriptLocation: inlineScript
inlineScript: |
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
--repository https://github.com/dotnet/aspnetcore `
--config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.aspnetcore.config.yml `
--app-id $(github.appid) `
Expand All @@ -109,7 +110,7 @@ extends:
scriptLocation: inlineScript
inlineScript: |
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
--repository https://github.com/dotnet/efcore `
--config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.efcore.config.yml `
--app-id $(github.appid) `
Expand All @@ -129,7 +130,7 @@ extends:
scriptLocation: inlineScript
inlineScript: |
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
--repository https://github.com/dotnet/runtime `
--config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.windows_x64.config.yml `
--app-id $(github.appid) `
Expand All @@ -150,7 +151,7 @@ extends:
scriptLocation: inlineScript
inlineScript: |
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
--repository https://github.com/dotnet/runtime `
--config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.windows_arm64.config.yml `
--app-id $(github.appid) `
Expand All @@ -173,9 +174,10 @@ extends:
steps:
- checkout: dotnet-crank
path: crank
workspaceRepo: true
fetchDepth: 1
displayName: Checkout dotnet-crank
- powershell: dotnet build --framework net8.0 -c release $(Pipeline.Workspace)/crank/src/Microsoft.Crank.PullRequestBot/
- powershell: dotnet build --framework net8.0 -c release src/Microsoft.Crank.PullRequestBot/
displayName: Build PR benchmarks
- checkout: self
fetchDepth: 1
Expand All @@ -189,7 +191,7 @@ extends:
scriptLocation: inlineScript
inlineScript: |
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
--repository https://github.com/dotnet/runtime `
--config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.linux_x64.config.yml `
--app-id $(github.appid) `
Expand All @@ -209,7 +211,7 @@ extends:
scriptLocation: inlineScript
inlineScript: |
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
--repository https://github.com/dotnet/runtime `
--config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.linux_arm64.config.yml `
--app-id $(github.appid) `
Expand Down
7 changes: 4 additions & 3 deletions build/regressionbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ extends:
steps:
- checkout: dotnet-crank
path: crank
workspaceRepo: true
fetchDepth: 1
displayName: Checkout dotnet-crank
- powershell: dotnet build --framework net8.0 -c release $(Pipeline.Workspace)/crank/src/Microsoft.Crank.RegressionBot/
- powershell: dotnet build --framework net8.0 -c release src/Microsoft.Crank.RegressionBot/
displayName: Build regression bot
- checkout: self
fetchDepth: 1
Expand All @@ -69,7 +70,7 @@ extends:
scriptType: ps
scriptLocation: inlineScript
inlineScript: |
dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.RegressionBot/release/net8.0/Microsoft.Crank.RegressionBot.dll `
dotnet artifacts/bin/Microsoft.Crank.RegressionBot/release/net8.0/Microsoft.Crank.RegressionBot.dll `
--config $(Pipeline.Workspace)/benchmarks/build/regressions.config.yml `
--connectionstring BENCHMARKSBOT_ConnectionString `
--repository-id $(github.repositoryId) `
Expand All @@ -79,7 +80,7 @@ extends:
--app-key BENCHMARKSBOT_GitHubAppKey `
--verbose

dotnet $(Pipeline.Workspace)/crank/artifacts/bin/Microsoft.Crank.RegressionBot/release/net8.0/Microsoft.Crank.RegressionBot.dll `
dotnet artifacts/bin/Microsoft.Crank.RegressionBot/release/net8.0/Microsoft.Crank.RegressionBot.dll `
--config $(Pipeline.Workspace)/benchmarks/build/regressions.blazor.config.yml `
--connectionstring BENCHMARKSBOT_ConnectionString `
--repository-id $(github.repositoryId) `
Expand Down
Loading