-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild_projects.yml
More file actions
308 lines (298 loc) · 9.78 KB
/
build_projects.yml
File metadata and controls
308 lines (298 loc) · 9.78 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
trigger:
- main
- next_stable
- 20*
pr:
branches:
include:
- main
- next_stable
- 20*
paths:
exclude:
- doc/**
- '**/*.md'
- '**/*.rst'
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: 'echo "Using Xilinx version: $(XILINX_VERSION)"'
displayName: 'Show Xilinx version'
- script: |
export BRANCH=$(branch)
wget -P ./tools/scripts/ \
https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/refs/heads/main/utils/cloudsmith_utils/cloudsmith_helper.py && \
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)
env:
CLOUDSMITH_API_KEY: $(CLOUDSMITH_API_KEY)
TOKEN: $(TOKEN)
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: |
echo "Using STM32CubeIDE version: $(STM32CUBEIDE_VERSION)"
echo "Using STM32CubeMX version: $(STM32CUBEMX_VERSION)"
displayName: 'Show SDK versions'
- script: |
wget -P ./tools/scripts/ \
https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/refs/heads/main/utils/cloudsmith_utils/cloudsmith_helper.py && \
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)
env:
CLOUDSMITH_API_KEY: $(CLOUDSMITH_API_KEY)
TOKEN: $(TOKEN)
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: 'echo "Using Maxim SDK version: $(MAXIM_SDK_VERSION)"'
displayName: 'Show Maxim SDK version'
- script: |
wget -P ./tools/scripts/ \
https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/refs/heads/main/utils/cloudsmith_utils/cloudsmith_helper.py && \
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)
env:
CLOUDSMITH_API_KEY: $(CLOUDSMITH_API_KEY)
TOKEN: $(TOKEN)
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: 'echo "Using Mbed version: $(MBED_VERSION)"'
displayName: 'Show Mbed version'
- script: |
wget -P ./tools/scripts/ \
https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/refs/heads/main/utils/cloudsmith_utils/cloudsmith_helper.py
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)
env:
CLOUDSMITH_API_KEY: $(CLOUDSMITH_API_KEY)
TOKEN: $(TOKEN)
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: 'echo "Using Pico SDK version: $(PICO_SDK_VERSION)"'
displayName: 'Show Pico SDK version'
- script: |
wget -P ./tools/scripts/ \
https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/refs/heads/main/utils/cloudsmith_utils/cloudsmith_helper.py && \
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)
env:
CLOUDSMITH_API_KEY: $(CLOUDSMITH_API_KEY)
TOKEN: $(TOKEN)
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: |
echo "Using ADuCM3029 DFP version: $(ADUCM3029_DFP_VERSION)"
echo "Using CCES IDE version: $(CCES_VERSION)"
echo "Using ARM CMSIS version: $(ARM_CMSIS_VERSION)"
displayName: 'Show SDK versions'
- script: |
wget -P ./tools/scripts/ \
https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/refs/heads/main/utils/cloudsmith_utils/cloudsmith_helper.py && \
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)
env:
CLOUDSMITH_API_KEY: $(CLOUDSMITH_API_KEY)
TOKEN: $(TOKEN)
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
find tests -name "project.yml" -type f | while read project_file; do
dir=$(dirname "$project_file")
cd "$dir" && ceedling test:all && cd -
done
displayName: 'Run unit tests'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: 'tests/drivers/**/build/artifacts/test/*.xml'