-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
build_projects.yml
247 lines (237 loc) · 7.4 KB
/
build_projects.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
trigger:
- main
- next_stable
- 20*
pr:
- main
- next_stable
- 20*
variables:
- group: noos_releases_group_variables
- name: isMain
value: $[eq(variables['Build.SourceBranch'], 'refs/heads/main')]
- name: isNextStable
value: $[eq(variables['Build.SourceBranch'], 'refs/heads/next_stable')]
- name: isRelease
value: $[contains(variables['Build.SourceBranch'], 'refs/heads/20')]
- ${{ if eq(variables['Build.Reason'], 'PullRequest')}}:
- name: branch
value: $(System.PullRequest.TargetBranchName)
- ${{ else }}:
- name: branch
value: $(Build.SourceBranchName)
jobs:
- job: Xilinx
timeoutInMinutes: 200
pool:
name: Default
demands:
- agent.name -equals no-OS_xilinx
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: |
export BRANCH=$(branch)
python3 ./tools/scripts/build_projects.py $(Build.Repository.LocalPath) \
-export_dir $(RELEASE_DIR) \
-log_dir $(LOG_DIR) \
-builds_dir /no-OS_builds/builds \
-platform xilinx \
-hdl_branch $(HDL_BRANCH)
displayName: 'Run project build'
- task: PublishPipelineArtifact@1
timeoutInMinutes: 10
condition: or(eq(variables.isMain, true), eq(variables.isNextStable, true), eq(variables.isRelease, true))
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(RELEASE_DIR)'
artifact: '$(ARTIFACT_NAME)_Xilinx'
publishLocation: 'pipeline'
- task: PublishPipelineArtifact@1
condition: true
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(LOG_DIR)'
artifact: 'logs_Xilinx_$(System.JobId)'
publishLocation: 'pipeline'
- job: STM32
timeoutInMinutes: 200
pool:
name: Default
demands:
- agent.name -equals no-OS
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: 'python3 ./tools/scripts/build_projects.py $(Build.Repository.LocalPath)
-export_dir $(RELEASE_DIR)
-log_dir $(LOG_DIR)
-builds_dir /no-OS_builds/builds
-platform stm32
-hdl_branch $(HDL_BRANCH)'
displayName: 'Run project build'
- task: PublishPipelineArtifact@1
timeoutInMinutes: 10
condition: or(eq(variables.isMain, true), eq(variables.isNextStable, true), eq(variables.isRelease, true))
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(RELEASE_DIR)'
artifact: '$(ARTIFACT_NAME)_STM32'
publishLocation: 'pipeline'
- task: PublishPipelineArtifact@1
condition: true
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(LOG_DIR)'
artifact: 'logs_STM32_$(System.JobId)'
publishLocation: 'pipeline'
- job: Maxim
timeoutInMinutes: 200
pool:
name: Default
demands:
- agent.name -equals no-OS
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: 'python3 ./tools/scripts/build_projects.py $(Build.Repository.LocalPath)
-export_dir $(RELEASE_DIR)
-log_dir $(LOG_DIR)
-builds_dir /no-OS_builds/builds
-platform maxim
-hdl_branch $(HDL_BRANCH)'
displayName: 'Run project build'
- task: PublishPipelineArtifact@1
timeoutInMinutes: 10
condition: or(eq(variables.isMain, true), eq(variables.isNextStable, true), eq(variables.isRelease, true))
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(RELEASE_DIR)'
artifact: '$(ARTIFACT_NAME)_Maxim'
publishLocation: 'pipeline'
- task: PublishPipelineArtifact@1
condition: true
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(LOG_DIR)'
artifact: 'logs_Maxim_$(System.JobId)'
publishLocation: 'pipeline'
- job: Mbed
timeoutInMinutes: 200
pool:
name: Default
demands:
- agent.name -equals no-OS
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: 'python3 ./tools/scripts/build_projects.py $(Build.Repository.LocalPath)
-export_dir $(RELEASE_DIR)
-log_dir $(LOG_DIR)
-builds_dir /no-OS_builds/builds
-platform mbed
-hdl_branch $(HDL_BRANCH)'
displayName: 'Run project build'
- task: PublishPipelineArtifact@1
timeoutInMinutes: 10
condition: or(eq(variables.isMain, true), eq(variables.isNextStable, true), eq(variables.isRelease, true))
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(RELEASE_DIR)'
artifact: '$(ARTIFACT_NAME)_Mbed'
publishLocation: 'pipeline'
- task: PublishPipelineArtifact@1
condition: true
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(LOG_DIR)'
artifact: 'logs_Mbed_$(System.JobId)'
publishLocation: 'pipeline'
- job: Pico
timeoutInMinutes: 200
pool:
name: Default
demands:
- agent.name -equals no-OS
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: 'python3 ./tools/scripts/build_projects.py $(Build.Repository.LocalPath)
-export_dir $(RELEASE_DIR)
-log_dir $(LOG_DIR)
-builds_dir /no-OS_builds/builds
-platform pico
-hdl_branch $(HDL_BRANCH)'
displayName: 'Run project build'
- task: PublishPipelineArtifact@1
timeoutInMinutes: 10
condition: or(eq(variables.isMain, true), eq(variables.isNextStable, true), eq(variables.isRelease, true))
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(RELEASE_DIR)'
artifact: '$(ARTIFACT_NAME)_Pico'
publishLocation: 'pipeline'
- task: PublishPipelineArtifact@1
condition: true
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(LOG_DIR)'
artifact: 'logs_Pico_$(System.JobId)'
publishLocation: 'pipeline'
- job: ADuCM3029
timeoutInMinutes: 200
pool:
name: Default
demands:
- agent.name -equals no-OS
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: 'python3 ./tools/scripts/build_projects.py $(Build.Repository.LocalPath)
-export_dir $(RELEASE_DIR)
-log_dir $(LOG_DIR)
-builds_dir /no-OS_builds/builds
-platform aducm3029
-hdl_branch $(HDL_BRANCH)'
displayName: 'Run project build'
- task: PublishPipelineArtifact@1
timeoutInMinutes: 10
condition: or(eq(variables.isMain, true), eq(variables.isNextStable, true), eq(variables.isRelease, true))
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(RELEASE_DIR)'
artifact: '$(ARTIFACT_NAME)_ADuCM3029'
publishLocation: 'pipeline'
- task: PublishPipelineArtifact@1
condition: true
inputs:
targetPath: '$(Build.Repository.LocalPath)/$(LOG_DIR)'
artifact: 'logs_ADuCM3029_$(System.JobId)'
publishLocation: 'pipeline'
- job: Unit_tests
pool:
vmImage: ubuntu-latest
steps:
- checkout: self
fetchDepth: 50
submodules: true
clean: true
persistCredentials: true
- script: |
sudo apt install ruby-full
sudo gem install ceedling
pip install gcovr==4.1
cd tests/drivers/imu/
ceedling test:all
displayName: 'Run unit tests'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: 'tests/drivers/imu/build/artifacts/test/*.xml'