forked from MoarVM/MoarVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
319 lines (297 loc) · 13 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
310
311
312
313
314
315
316
317
318
319
trigger:
- master
pr:
- master
variables:
# Turn this Powershell console into a developer powershell console.
# https://intellitect.com/enter-vsdevshell-powershell/
PWSH_DEV: |
if ($env:Agent_OS -eq 'Windows_NT') {
$installPath = &"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationpath
$devShell = &"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -latest -find **\Microsoft.VisualStudio.DevShell.dll
Import-Module $devShell
Enter-VsDevShell -VsInstallPath $installPath -SkipAutomaticLocation -DevCmdArguments "-arch=amd64"
}
RAKUDO_CHECKOUT_TYPE: main
NQP_CHECKOUT_TYPE: main
MOAR_CHECKOUT_TYPE: "rev-$(Build.SourceVersion)-selfrepo"
INSTALL_DIR: install
stages:
- stage: Test
jobs:
# Keep the job and matrix entry names as short as possible as the webinterface
# leaves little space for the name.
- job: T
strategy:
matrix:
Win_MVM:
IMAGE_NAME: 'windows-2019'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: ''
Win_MVM_reloc:
IMAGE_NAME: 'windows-2019'
RELOCATABLE: 'yes'
RAKUDO_OPTIONS: '--relocatable'
NQP_OPTIONS: '--backends=moar --relocatable'
MOAR_OPTIONS: '--relocatable'
Mac_MVM:
IMAGE_NAME: 'macOS-12'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: ''
Mac_MVM_reloc:
IMAGE_NAME: 'macOS-12'
RELOCATABLE: 'yes'
RAKUDO_OPTIONS: '--relocatable'
NQP_OPTIONS: '--backends=moar --relocatable'
MOAR_OPTIONS: '--relocatable'
Mac_MVM_no_C11_atomics:
IMAGE_NAME: 'macOS-12'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--no-c11-atomics'
Lin_MVM:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--debug=3'
CHECK_LEAKS: 'yes'
Lin_MVM_reloc:
IMAGE_NAME: 'ubuntu-22.04'
RELOCATABLE: 'yes'
RAKUDO_OPTIONS: '--relocatable'
NQP_OPTIONS: '--backends=moar --relocatable'
MOAR_OPTIONS: '--relocatable --debug=3'
CHECK_LEAKS: 'yes'
MVM_gcc_njit:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--no-jit --cc=gcc --debug=3'
CHECK_LEAKS: 'yes'
MVM_gcc:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=gcc --debug=3'
CHECK_LEAKS: 'yes'
MVM_clang_njit:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--no-jit --cc=clang --debug=3'
CHECK_LEAKS: 'yes'
MVM_clang:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=clang --debug=3'
CHECK_LEAKS: 'yes'
MVM_gcc_njit_libffi:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--has-libffi --no-jit --cc=gcc --debug=3'
CHECK_LEAKS: 'yes'
MVM_gcc_libffi:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--has-libffi --cc=gcc --debug=3'
CHECK_LEAKS: 'yes'
MVM_clang_njit_libffi:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--has-libffi --no-jit --cc=clang --debug=3'
CHECK_LEAKS: 'yes'
MVM_clang_libffi:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--has-libffi --cc=clang --debug=3'
CHECK_LEAKS: 'yes'
MVM_gcc_mingw:
IMAGE_NAME: 'windows-2019'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--os=mingw32'
# MVM_coverage:
# IMAGE_NAME: 'ubuntu-22.04'
# RAKUDO_OPTIONS: ''
# NQP_OPTIONS: '--backends=moar'
# MOAR_OPTIONS: '--compiler=clang --coverage --optimize=0 --debug=3 --cc=clang'
# COVERAGE: 'yes'
MVM_gcc_malloc:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=gcc --debug=3 --no-mimalloc'
CHECK_LEAKS: 'yes'
MVM_clang_malloc:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=clang --debug=3 --no-mimalloc'
CHECK_LEAKS: 'yes'
MVM_gcc_no_c11_atomics:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=gcc --debug=3 --no-c11-atomics'
CHECK_LEAKS: 'yes'
MVM_clang_no_c11_atomics:
IMAGE_NAME: 'ubuntu-22.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=clang --debug=3 --no-c11-atomics'
CHECK_LEAKS: 'yes'
# Backwards compatability jobs, using the oldest OS version that GH actions support
MVM_Ub_20_gcc:
IMAGE_NAME: 'ubuntu-20.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=gcc --debug=3'
MVM_Ub_20_clang:
IMAGE_NAME: 'ubuntu-20.04'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: '--cc=clang --debug=3'
Mac_11_MVM:
IMAGE_NAME: 'macOS-11'
RAKUDO_OPTIONS: ''
NQP_OPTIONS: '--backends=moar'
MOAR_OPTIONS: ''
pool:
vmImage: $(IMAGE_NAME)
workspace:
clean: all
timeoutInMinutes: 180
steps:
- pwsh: |
# Windows has a maximum PATH variable length of 2048 (depending on
# how it's accessed). The length of PATH in AzureCI is already
# really tight. We'll run into the limit when we add Java and the
# MS BuildTools to the path.
# To work around this, we remove a bunch of stuff we won't need
# from PATH here.
$shortened_path = "$(PATH)" -replace ';[^;]*(SeleniumWebDrivers|SQL Server|Mercurial|Amazon|mysql|\\sbt\\|NSIS|Windows Performance Toolkit|php|Subversion)[^;]*(?=(;|$))', ''
echo "##vso[task.setvariable variable=PATH]$shortened_path"
displayName: "Shorten PATH on Windows"
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
sudo apt-get update
sudo apt-get install libzstd-dev valgrind
# The loop with libc-bin and glibc-tools are because catchsegv moved packages with Ubuntu 20.04 and again with 22.04
for pkg in libc-bin glibc-tools
do
sudo apt-get install -qy $pkg || true
done
condition: and(succeeded(), eq( variables['Agent.OS'], 'Linux' ))
displayName: Install libzstd-dev and valgrind
- checkout: self
path: selfrepo
displayName: Checkout script repo
- script: perl selfrepo/tools/build/checkout-repos-for-test.pl $(RAKUDO_CHECKOUT_TYPE) $(NQP_CHECKOUT_TYPE) $(MOAR_CHECKOUT_TYPE)
workingDirectory: $(Pipeline.Workspace)
displayName: Checkout repositories
# Build MoarVM
- script: |
perl Configure.pl --prefix=../$(INSTALL_DIR) $(MOAR_OPTIONS)
make -j2 install
workingDirectory: '$(Pipeline.Workspace)/MoarVM'
condition: and(succeeded(), ne( variables['Agent.OS'], 'Windows_NT' ))
displayName: Build MoarVM
- pwsh: |
${{ variables.PWSH_DEV }}
perl Configure.pl --prefix=..\$(INSTALL_DIR) $(MOAR_OPTIONS)
gmake -j2 install
failOnStderr: false
workingDirectory: '$(Pipeline.Workspace)/MoarVM'
condition: and(succeeded(), eq( variables['Agent.OS'], 'Windows_NT' ), contains( variables['MOAR_OPTIONS'], 'mingw32' ))
displayName: Build MoarVM (Windows, MinGW)
- pwsh: |
${{ variables.PWSH_DEV }}
perl Configure.pl --prefix=..\$(INSTALL_DIR) $(MOAR_OPTIONS)
set CL=/MP
nmake install
failOnStderr: false
workingDirectory: '$(Pipeline.Workspace)/MoarVM'
condition: and(succeeded(), eq( variables['Agent.OS'], 'Windows_NT' ), not(contains( variables['MOAR_OPTIONS'], 'mingw32' )))
displayName: Build MoarVM (Windows, MSVC)
# Build NQP
- pwsh: |
${{ variables.PWSH_DEV }}
perl Configure.pl --prefix=../$(INSTALL_DIR) $(NQP_OPTIONS) --make-install
workingDirectory: '$(Pipeline.Workspace)/nqp'
condition: and(succeeded(), ne( variables['Agent.OS'], 'Linux' ) )
displayName: Build NQP
- script: |
export SEGFAULT_SIGNALS="all"
catchsegv perl Configure.pl --prefix=../$(INSTALL_DIR) $(NQP_OPTIONS) --make-install
workingDirectory: '$(Pipeline.Workspace)/nqp'
condition: and(succeeded(), eq( variables['Agent.OS'], 'Linux' ) )
displayName: Build NQP (Linux)
# Build Rakudo
- pwsh: |
${{ variables.PWSH_DEV }}
perl Configure.pl --prefix=../$(INSTALL_DIR) $(RAKUDO_OPTIONS) --make-install
workingDirectory: '$(Pipeline.Workspace)/rakudo'
condition: and(succeeded(), ne( variables['Agent.OS'], 'Linux' ) )
displayName: Build Rakudo
- script: |
export SEGFAULT_SIGNALS="all"
catchsegv perl Configure.pl --prefix=../$(INSTALL_DIR) $(RAKUDO_OPTIONS) --make-install
workingDirectory: '$(Pipeline.Workspace)/rakudo'
condition: and(succeeded(), eq( variables['Agent.OS'], 'Linux' ) )
displayName: Build Rakudo (Linux)
# TODO: Should use "install moved" instead of "install-moved". But `prove` currently fails with an executable path that contains a space.
- pwsh: |
mv $(INSTALL_DIR) $(INSTALL_DIR)-moved
echo "##vso[task.setvariable variable=INSTALL_DIR]$(INSTALL_DIR)-moved"
workingDirectory: $(Pipeline.Workspace)
condition: and(succeeded(), eq( variables['RELOCATABLE'], 'yes' ) )
displayName: Move installation
# Test NQP
- script: prove -j2 -r -e ../$(INSTALL_DIR)/bin/nqp t/nqp t/hll t/qregex t/p5regex t/qast t/moar t/serialization t/nativecall t/concurrency
workingDirectory: '$(Pipeline.Workspace)/nqp'
condition: and(succeeded(), ne( variables['Agent.OS'], 'Linux' ) )
displayName: Test NQP
- script: |
export SEGFAULT_SIGNALS="all"
catchsegv prove -j2 -r -e ../$(INSTALL_DIR)/bin/nqp t/nqp t/hll t/qregex t/p5regex t/qast t/moar t/serialization t/nativecall t/concurrency
workingDirectory: '$(Pipeline.Workspace)/nqp'
condition: and(succeeded(), eq( variables['Agent.OS'], 'Linux' ) )
displayName: Test NQP (Linux)
# Test Rakudo
- pwsh: |
${{ variables.PWSH_DEV }}
$install_path = Resolve-Path ../$(INSTALL_DIR)/bin/
prove -j2 -e "$($install_path.Path)raku" -vlr t
workingDirectory: '$(Pipeline.Workspace)/rakudo'
condition: and(succeeded(), ne( variables['Agent.OS'], 'Linux' ) )
displayName: Test Rakudo
- script: |
export SEGFAULT_SIGNALS="all"
catchsegv prove -j2 -e ../$(INSTALL_DIR)/bin/raku -vlr t
workingDirectory: '$(Pipeline.Workspace)/rakudo'
condition: and(succeeded(), eq( variables['Agent.OS'], 'Linux' ) )
displayName: Test Rakudo (Linux)
- publish: $(Pipeline.Workspace)/$(INSTALL_DIR)
condition: and(succeeded(), eq( variables['RELOCATABLE'], 'yes' ))
displayName: Publish build artifact
# - script: |
# git clone --depth 1 'https://github.com/samcv/MoarVM-cover.git' &&
# cp -v MoarVM-cover/html-cover.sh . &&
# cp -v MoarVM-cover/nqp-profile ../nqp/ &&
# cp -v MoarVM-cover/merge-profraw.sh ../nqp/ &&
# ./html-cover.sh 2
# condition: and(succeeded(), eq( variables['COVERAGE'], 'yes' ))
# displayName: Create coverage report
- script: |
valgrind --leak-check=full ../$(INSTALL_DIR)/bin/raku --full-cleanup -e '' 2>valgrind.log
cat valgrind.log
grep 'in use at exit: 0 bytes in 0 blocks' valgrind.log
condition: and(succeeded(), eq( variables['CHECK_LEAKS'], 'yes' ), ne( variables['COVERAGE'], 'yes' ), eq( variables['Agent.OS'], 'Linux' ))
displayName: Check for memory leaks