forked from onivim/oni2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
219 lines (196 loc) · 7.42 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
# 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)
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.13'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /Users/runner/.esy/3__________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /Users/runner/.esy/source/i
# ESY__NPM_ROOT: /usr/local/lib/node_modules/esy
steps:
- template: .ci/use-node.yml
- script: brew update
- script: brew install libpng ragel
- template: .ci/swap-xcode.yml
- template: .ci/restore-build-cache.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
timeoutInMinutes: 0
pool:
vmImage: 'macOS 10.13'
variables:
STAGING_DIRECTORY: $(Build.StagingDirectory)
ESY__CACHE_INSTALL_PATH: /Users/runner/.esy/3__________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /Users/runner/.esy/source/i
# ESY__NPM_ROOT: /usr/local/lib/node_modules/esy
steps:
- template: .ci/use-node.yml
- script: brew update
- script: brew install libpng ragel
- template: .ci/swap-xcode.yml
- template: .ci/restore-build-cache.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: ValidateLinuxRelease
displayName: "Linux: Validate Release"
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: ValidateMacOSRelease
displayName: "MacOS: Validate Release"
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: 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)"