forked from dotnet/machinelearning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.night-build.yml
119 lines (107 loc) · 2.83 KB
/
.night-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
################################################################################
# ML.NET's nightly build
################################################################################
# no PR builds
pr: none
# no CI builds
trigger: none
# scheduled trigger, runs at UTC 8:00 every day which is midnight of GMT-8
schedules:
- cron: "0 8 * * *"
displayName: Nightly Build at midnight
branches:
include:
- main
- feature/*
- release/*
always: true
resources:
containers:
- container: CentosContainer
image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8-mlnet
- container: UbuntuContainer
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-mlnet
jobs:
- template: /build/ci/job-template.yml
parameters:
name: Centos_x64_Net60
buildScript: ./build.sh
container: CentosContainer
customMatrixes:
Debug_Build:
_configuration: Debug
_config_short: DI
_targetFramework: net6.0
_includeBenchmarkData: false
Release_Build:
_configuration: Release
_config_short: RI
_targetFramework: net6.0
_includeBenchmarkData: true
nightlyBuild: true
pool:
vmImage: ubuntu-18.04
- template: /build/ci/job-template.yml
parameters:
name: Ubuntu_x64_NetCoreApp21
buildScript: ./build.sh
container: UbuntuContainer
nightlyBuild: true
pool:
vmImage: ubuntu-18.04
- template: /build/ci/job-template.yml
parameters:
name: MacOS_x64_NetCoreApp21
buildScript: ./build.sh
nightlyBuild: true
pool:
vmImage: macOS-12
- template: /build/ci/job-template.yml
parameters:
name: Windows_x64_Net60
buildScript: build.cmd
customMatrixes:
Debug_Build:
_configuration: Debug
_config_short: DI
_includeBenchmarkData: false
Release_Build:
_configuration: Release
_config_short: RI
_includeBenchmarkData: true
nightlyBuild: true
pool:
vmImage: windows-2019
- template: /build/ci/job-template.yml
parameters:
name: Windows_x64_NetCoreApp21
buildScript: build.cmd
nightlyBuild: true
pool:
vmImage: windows-2019
- template: /build/ci/job-template.yml
parameters:
name: Windows_x64_NetFx461
buildScript: build.cmd
customMatrixes:
Debug_Build:
_configuration: Debug
_config_short: DFX
_includeBenchmarkData: false
_targetFramework: net462
Release_Build:
_configuration: Release
_config_short: RFX
_includeBenchmarkData: false
_targetFramework: net462
nightlyBuild: true
pool:
vmImage: windows-2019
- template: /build/ci/job-template.yml
parameters:
name: Windows_x86_NetCoreApp21
architecture: x86
buildScript: build.cmd
nightlyBuild: true
pool:
vmImage: windows-2019