@@ -10,14 +10,20 @@ schedules:
10
10
include :
11
11
- main
12
12
always : " true" # whether to always run the pipeline or only if there have been source code changes since the last successful scheduled run. The default is false.
13
- - cron : " 20 * * * *"
14
- displayName : " On :10 "
13
+ - cron : " 15 * * * *"
14
+ displayName : " On :15 "
15
15
branches :
16
16
include :
17
17
- main
18
18
always : " true"
19
- - cron : " 40 * * * *"
20
- displayName : " On :20"
19
+ - cron : " 30 * * * *"
20
+ displayName : " On :30"
21
+ branches :
22
+ include :
23
+ - main
24
+ always : " true"
25
+ - cron : " 45 * * * *"
26
+ displayName : " On :45"
21
27
branches :
22
28
include :
23
29
- main
@@ -36,11 +42,11 @@ jobs:
36
42
cd .\crank\src\Microsoft.Crank.PullRequestBot
37
43
git pull
38
44
git rev-parse HEAD
39
- dotnet build -c release --framework net7 .0
45
+ dotnet build -c release --framework net8 .0
40
46
41
47
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
42
48
43
- dotnet run --no-build --framework net7 .0 -c release `
49
+ dotnet run --no-build --framework net8 .0 -c release `
44
50
--repository https://github.com/dotnet/aspnetcore `
45
51
--config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/prbenchmarks.aspnetcore.config.yml `
46
52
--app-id $(github.appid) `
49
55
--publish-results true `
50
56
--external-log-uri $buildUrl
51
57
52
- dotnet run --no-build --framework net7 .0 -c release `
58
+ dotnet run --no-build --framework net8 .0 -c release `
53
59
--repository https://github.com/dotnet/efcore `
54
60
--config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/prbenchmarks.efcore.config.yml `
55
61
--app-id $(github.appid) `
58
64
--publish-results true `
59
65
--external-log-uri $buildUrl
60
66
61
- dotnet run --no-build --framework net7 .0 -c release `
67
+ dotnet run --no-build --framework net8 .0 -c release `
62
68
--repository https://github.com/dotnet/runtime `
63
69
--config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/prbenchmarks.runtime.windows_x64.config.yml `
64
70
--app-id $(github.appid) `
67
73
--publish-results true `
68
74
--external-log-uri $buildUrl
69
75
70
- dotnet run --no-build --framework net7 .0 -c release `
76
+ dotnet run --no-build --framework net8 .0 -c release `
71
77
--repository https://github.com/dotnet/runtime `
72
78
--config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/prbenchmarks.runtime.windows_arm64.config.yml `
73
79
--app-id $(github.appid) `
@@ -91,11 +97,11 @@ jobs:
91
97
git clone https://github.com/dotnet/crank -b main
92
98
cd ./crank/src/Microsoft.Crank.PullRequestBot
93
99
git rev-parse HEAD
94
- dotnet build -c release --framework net7 .0
100
+ dotnet build -c release --framework net8 .0
95
101
96
102
$buildUrl="$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
97
103
98
- dotnet run --no-build --framework net7 .0 -c release `
104
+ dotnet run --no-build --framework net8 .0 -c release `
99
105
--repository https://github.com/dotnet/runtime `
100
106
--config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/prbenchmarks.runtime.linux_x64.config.yml `
101
107
--app-id $(github.appid) `
@@ -104,7 +110,7 @@ jobs:
104
110
--publish-results true `
105
111
--external-log-uri $buildUrl
106
112
107
- dotnet run --no-build --framework net7 .0 -c release `
113
+ dotnet run --no-build --framework net8 .0 -c release `
108
114
--repository https://github.com/dotnet/runtime `
109
115
--config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/prbenchmarks.runtime.linux_arm64.config.yml `
110
116
--app-id $(github.appid) `
0 commit comments