@@ -73,9 +73,10 @@ extends:
7373 steps :
7474 - checkout : dotnet-crank
7575 path : crank
76+ workspaceRepo : true
7677 fetchDepth : 1
7778 displayName : Checkout dotnet-crank
78- - powershell : dotnet build --framework net8.0 -c release $(Pipeline.Workspace)/crank/ src/Microsoft.Crank.PullRequestBot/
79+ - powershell : dotnet build --framework net8.0 -c release src/Microsoft.Crank.PullRequestBot/
7980 displayName : Build PR benchmarks
8081 - checkout : self
8182 fetchDepth : 1
@@ -89,7 +90,7 @@ extends:
8990 scriptLocation : inlineScript
9091 inlineScript : |
9192 $buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
92- dotnet $(Pipeline.Workspace)/crank/ artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
93+ dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
9394 --repository https://github.com/dotnet/aspnetcore `
9495 --config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.aspnetcore.config.yml `
9596 --app-id $(github.appid) `
@@ -109,7 +110,7 @@ extends:
109110 scriptLocation : inlineScript
110111 inlineScript : |
111112 $buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
112- dotnet $(Pipeline.Workspace)/crank/ artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
113+ dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
113114 --repository https://github.com/dotnet/efcore `
114115 --config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.efcore.config.yml `
115116 --app-id $(github.appid) `
@@ -129,7 +130,7 @@ extends:
129130 scriptLocation : inlineScript
130131 inlineScript : |
131132 $buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
132- dotnet $(Pipeline.Workspace)/crank/ artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
133+ dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
133134 --repository https://github.com/dotnet/runtime `
134135 --config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.windows_x64.config.yml `
135136 --app-id $(github.appid) `
@@ -150,7 +151,7 @@ extends:
150151 scriptLocation : inlineScript
151152 inlineScript : |
152153 $buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
153- dotnet $(Pipeline.Workspace)/crank/ artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
154+ dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
154155 --repository https://github.com/dotnet/runtime `
155156 --config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.windows_arm64.config.yml `
156157 --app-id $(github.appid) `
@@ -173,9 +174,10 @@ extends:
173174 steps :
174175 - checkout : dotnet-crank
175176 path : crank
177+ workspaceRepo : true
176178 fetchDepth : 1
177179 displayName : Checkout dotnet-crank
178- - powershell : dotnet build --framework net8.0 -c release $(Pipeline.Workspace)/crank/ src/Microsoft.Crank.PullRequestBot/
180+ - powershell : dotnet build --framework net8.0 -c release src/Microsoft.Crank.PullRequestBot/
179181 displayName : Build PR benchmarks
180182 - checkout : self
181183 fetchDepth : 1
@@ -189,7 +191,7 @@ extends:
189191 scriptLocation : inlineScript
190192 inlineScript : |
191193 $buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
192- dotnet $(Pipeline.Workspace)/crank/ artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
194+ dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
193195 --repository https://github.com/dotnet/runtime `
194196 --config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.linux_x64.config.yml `
195197 --app-id $(github.appid) `
@@ -209,7 +211,7 @@ extends:
209211 scriptLocation : inlineScript
210212 inlineScript : |
211213 $buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
212- dotnet $(Pipeline.Workspace)/crank/ artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
214+ dotnet artifacts/bin/Microsoft.Crank.PullRequestBot/release/net8.0/crank-pr.dll `
213215 --repository https://github.com/dotnet/runtime `
214216 --config $(Pipeline.Workspace)/benchmarks/build/prbenchmarks.runtime.linux_arm64.config.yml `
215217 --app-id $(github.appid) `
0 commit comments