forked from onivim/oni2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
309 lines (277 loc) · 9.88 KB
/
azure-pipelines.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
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
309
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
name: $(Build.SourceVersion)
# Master build triggers
trigger:
- master
# PR Triggers
pr:
autoCancel: true
branches:
include:
- master
paths:
exclude:
- README.md
jobs:
- job: Kickoff
displayName: "Kickoff"
pool:
vmImage: 'ubuntu-latest'
steps:
- script: ./scripts/set-short-commit-variable.sh
name: shortCommitVariableStep
- job: Hygiene_Checks
displayName: 'Hygiene Checks'
timeoutInMinutes: 0
pool:
vmImage: 'macOS 10.14'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /Users/runner/.esy/3__________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /Users/runner/.esy/source/i
MACOSX_DEPLOYMENT_TARGET: 10.12
# ESY__NPM_ROOT: /usr/local/lib/node_modules/esy
steps:
- template: .ci/use-node.yml
- script: brew update
- script: brew install libtool libpng ragel
- template: .ci/swap-xcode.yml
- template: .ci/js-build-steps.yml
- template: .ci/esy-check-hygiene.yml
- template: .ci/publish-build-cache.yml
- job: Linux
displayName: 'Linux - Ubuntu 16.04'
timeoutInMinutes: 60
pool:
vmImage: 'ubuntu-16.04'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /home/vsts/.esy/3_____________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /home/vsts/.esy/source/i
# ESY__NPM_ROOT: /opt/hostedtoolcache/node/8.14.0/x64/lib/node_modules/esy
steps:
- template: .ci/use-node.yml
- script: sudo apt-get update
- script: sudo apt-get install -y libncurses5-dev libacl1-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev mesa-utils mesa-utils-extra ragel libgtk-3-dev nasm
- template: .ci/restore-build-cache.yml
- template: .ci/js-build-steps.yml
- template: .ci/esy-build-steps.yml
parameters:
platform: linux
- script: _release/Onivim2.AppDir/usr/bin/Oni2 -f --no-log-colors --checkhealth
displayName: 'Release: --checkhealth'
- template: .ci/publish-build-cache.yml
- job: CentOS
displayName: 'Linux - CentOS - Docker Image'
timeoutInMinutes: 0
pool:
vmImage: 'Ubuntu 16.04'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /home/vsts/.esy/3_____________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /home/vsts/.esy/source/i
# ESY__NPM_ROOT: /opt/hostedtoolcache/node/8.14.0/x64/lib/node_modules/esy
steps:
- script: docker build -t centos scripts/docker/centos
displayName: 'docker build'
- script: docker run --rm --mount src=`pwd`,target=/oni2,type=bind centos /bin/bash -c 'which ragel'
- script: docker run --rm --mount src=`pwd`,target=/oni2,type=bind centos /bin/bash -c 'cd oni2 && ls -a'
- script: docker run --cap-add SYS_ADMIN --device /dev/fuse --security-opt apparmor:unconfined --rm --mount src=`pwd`,target=/oni2,type=bind centos /bin/bash -c 'cd oni2 && ./scripts/docker-build.sh'
- script: _release/Onivim2.AppDir/usr/bin/Oni2 -f --checkhealth
displayName: 'Release: --checkhealth'
- template: .ci/publish-linux.yml
- job: MacOS
displayName: "MacOS 10.14"
timeoutInMinutes: 0
pool:
vmImage: 'macOS 10.14'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /Users/runner/.esy/3__________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /Users/runner/.esy/source/i
MACOSX_DEPLOYMENT_TARGET: 10.12
# ESY__NPM_ROOT: /usr/local/lib/node_modules/esy
steps:
- template: .ci/use-node.yml
- script: brew update
- script: brew install libtool libpng ragel
- template: .ci/swap-xcode.yml
- template: .ci/js-build-steps.yml
- template: .ci/esy-build-steps.yml
parameters:
platform: darwin
- script: _release/Onivim2.App/Contents/MacOS/Oni2 -f --checkhealth
displayName: 'Release: --checkhealth'
- template: .ci/publish-osx.yml
- template: .ci/publish-build-cache.yml
- job: Windows
timeoutInMinutes: 150
pool:
vmImage: 'vs2017-win2016'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /C/Users/VssAdministrator/.esy/3______________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /C/Users/VssAdministrator/.esy/source/i
# ESY__NPM_ROOT: /C/npm/prefix/node_modules/esy
steps:
- template: .ci/use-node.yml
- powershell: ./scripts/windows/verify-signtool.ps1
displayName: 'Validate signtool path'
- template: .ci/restore-build-cache.yml
- template: .ci/js-build-steps.yml
- template: .ci/esy-build-steps.yml
parameters:
platform: windows
- script: dir
workingDirectory: _release/win32
displayName: 'check directory contents'
- script: Oni2.exe -f --no-log-colors --checkhealth
workingDirectory: _release/win32
displayName: 'Release: --checkhealth'
- template: .ci/publish-win.yml
- template: .ci/publish-build-cache.yml
- job: ValidateLinuxReleaseUbuntu16
displayName: "Linux: Validate Release (Ubuntu 16.04)"
dependsOn:
- Kickoff
- CentOS
pool:
vmImage: 'ubuntu-16.04'
variables:
ONI2_SHORT_COMMIT_ID: $[dependencies.Kickoff.outputs['shortCommitVariableStep.ONI2_SHORT_COMMIT_ID'] ]
steps:
- script: echo $(ONI2_SHORT_COMMIT_ID)
- script: 'echo ArtifactDir: $(System.ArtifactsDirectory)'
displayName: 'Echo artifact dir'
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Release_Linux'
downloadPath: '$(System.ArtifactsDirectory)'
- script: ./scripts/linux/validate-release.sh
env:
SYSTEM_ARTIFACTSDIRECTORY: $(System.ArtifactsDirectory)
- job: ValidateLinuxReleaseUbuntu18
displayName: "Linux: Validate Release (Ubuntu 18.04)"
dependsOn:
- Kickoff
- CentOS
pool:
vmImage: 'ubuntu-18.04'
variables:
ONI2_SHORT_COMMIT_ID: $[dependencies.Kickoff.outputs['shortCommitVariableStep.ONI2_SHORT_COMMIT_ID'] ]
steps:
- script: echo $(ONI2_SHORT_COMMIT_ID)
- script: 'echo ArtifactDir: $(System.ArtifactsDirectory)'
displayName: 'Echo artifact dir'
- script: sudo apt-get install libegl1-mesa
displayName: 'Install dependencies'
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Release_Linux'
downloadPath: '$(System.ArtifactsDirectory)'
- script: ./scripts/linux/validate-release.sh
env:
SYSTEM_ARTIFACTSDIRECTORY: $(System.ArtifactsDirectory)
- job: ValidateMacOSRelease13
displayName: "MacOS: Validate Release (10.13)"
dependsOn:
- Kickoff
- MacOS
pool:
vmImage: 'macOS-10.13'
variables:
ONI2_SHORT_COMMIT_ID: $[dependencies.Kickoff.outputs['shortCommitVariableStep.ONI2_SHORT_COMMIT_ID'] ]
steps:
- script: echo $(ONI2_SHORT_COMMIT_ID)
- script: 'echo ArtifactDir: $(System.ArtifactsDirectory)'
displayName: 'Echo artifact dir'
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Release_Darwin'
downloadPath: '$(System.ArtifactsDirectory)'
- script: ./scripts/osx/validate-release.sh
env:
SYSTEM_ARTIFACTSDIRECTORY: $(System.ArtifactsDirectory)
- job: ValidateMacOSRelease14
displayName: "MacOS: Validate Release (10.14)"
dependsOn:
- Kickoff
- MacOS
pool:
vmImage: 'macOS-10.14'
variables:
ONI2_SHORT_COMMIT_ID: $[dependencies.Kickoff.outputs['shortCommitVariableStep.ONI2_SHORT_COMMIT_ID'] ]
steps:
- script: echo $(ONI2_SHORT_COMMIT_ID)
- script: 'echo ArtifactDir: $(System.ArtifactsDirectory)'
displayName: 'Echo artifact dir'
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Release_Darwin'
downloadPath: '$(System.ArtifactsDirectory)'
- script: ./scripts/osx/validate-release.sh
env:
SYSTEM_ARTIFACTSDIRECTORY: $(System.ArtifactsDirectory)
- job: ValidateMacOSRelease15
displayName: "MacOS: Validate Release (10.15)"
dependsOn:
- Kickoff
- MacOS
pool:
vmImage: 'macOS-10.15'
variables:
ONI2_SHORT_COMMIT_ID: $[dependencies.Kickoff.outputs['shortCommitVariableStep.ONI2_SHORT_COMMIT_ID'] ]
steps:
- script: echo $(ONI2_SHORT_COMMIT_ID)
- script: 'echo ArtifactDir: $(System.ArtifactsDirectory)'
displayName: 'Echo artifact dir'
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Release_Darwin'
downloadPath: '$(System.ArtifactsDirectory)'
- script: ./scripts/osx/validate-release.sh
env:
SYSTEM_ARTIFACTSDIRECTORY: $(System.ArtifactsDirectory)
- job: ValidateWindowsRelease
timeoutInMinutes: 10
displayName: "Windows: Validate Release"
dependsOn:
- Kickoff
- Windows
pool:
vmImage: 'vs2017-win2016'
variables:
ONI2_SHORT_COMMIT_ID: $[dependencies.Kickoff.outputs['shortCommitVariableStep.ONI2_SHORT_COMMIT_ID'] ]
steps:
- script: echo $(ONI2_SHORT_COMMIT_ID)
- script: 'echo ArtifactDir: $(System.ArtifactsDirectory)'
displayName: 'Echo artifact dir'
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Release_Windows'
downloadPath: '$(System.ArtifactsDirectory)'
- powershell: ./scripts/windows/validate-release.ps1
env:
SYSTEM_ARTIFACTSDIRECTORY: $(System.ArtifactsDirectory)
- script: echo %PATH%
# The validate-release.ps1 installs Onivim 2 and checks it,
# but we need to check from the command prompt, too via %PATH% - for #872
- script: |
set PATH=%PATH%;D:/a/1/s/Onivim2
Oni2.exe -f --no-log-colors --checkhealth
displayName: "Oni2.exe -f --no-log-colors --checkhealth (run installed)"