-
-
Notifications
You must be signed in to change notification settings - Fork 75
447 lines (386 loc) · 12.9 KB
/
_tests.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
# re-usable workflow to run integration tests
name: Tests
on:
workflow_call:
inputs:
os:
required: true
type: string
env:
ORG_GRADLE_PROJECT_downloadIdeaSources: false
CI: GitHub
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
YOUTRACK_TOKEN: ${{ secrets.YOUTRACK_TOKEN }}
PERL_TEST_VERSION: 5.38.0
TEST_PERL_MODULES: Mojolicious HURRICUP/Devel-Camelcadedb-v2023.1.tar.gz Devel::Cover JSON App::Prove::Plugin::PassEnv TAP::Formatter::Camelcade Devel::NYTProf Perl::Tidy Perl::Critic B::Debug Types::Serialiser
jobs:
integration-plenv:
name: Integration (plenv)
if: ${{ inputs.os != 'windows-latest' }}
runs-on: ${{ inputs.os }}
env:
PERL_CONFIGURATORS: LOCAL_PLENV
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Cache plenv
uses: actions/cache@v4
env:
cache-name: cache-plenv
cache-version: 0
with:
path: ~/.plenv
key: plenv-${{ runner.os }}
- name: Set up plenv
env:
PLENV_VERSION: ${{ env.PERL_TEST_VERSION }}
run: |
git clone --depth 1 https://github.com/tokuhirom/plenv.git ~/.plenv || git -C ~/.plenv pull
git clone --depth 1 https://github.com/tokuhirom/Perl-Build.git ~/.plenv/plugins/perl-build/ || git -C ~/.plenv/plugins/perl-build pull
bash -c '~/.plenv/bin/plenv install ${{ env.PERL_TEST_VERSION }} --noman -j 8 || true'
~/.plenv/bin/plenv install-cpanm
~/.plenv/bin/plenv exec cpanm --notest ${{ env.TEST_PERL_MODULES }}
bash -c 'echo "" | ~/.plenv/bin/plenv exec cpan'
rm -Rf ~/.plenv/cache ~/.plenv/build
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 1200 &
./gradlew test -PintegrationTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: coverage-integration-plenv-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: plenv-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
integration-asdf:
name: Integration (asdf)
if: ${{ inputs.os != 'windows-latest' }}
runs-on: ${{ inputs.os }}
env:
PERL_CONFIGURATORS: LOCAL_ASDF
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Cache asdf
uses: actions/cache@v4
with:
path: ~/.asdf
key: asdf-${{ runner.os }}
- name: Set up asdf
env:
ASDF_PERL_VERSION: ${{ env.PERL_TEST_VERSION }}
run: |
git clone --depth 1 https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.2 && ~/.asdf/bin/asdf plugin add perl || ~/.asdf/bin/asdf update
bash -c '~/.asdf/bin/asdf install perl ${{ env.PERL_TEST_VERSION }} --noman -j 8 || true'
~/.asdf/bin/asdf exec cpan install App::cpanminus <<<yes
~/.asdf/bin/asdf exec cpanm --notest ${{ env.TEST_PERL_MODULES }}
~/.asdf/bin/asdf reshim perl
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 1200 &
./gradlew test -PintegrationTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: coverage-integration-asdf-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: asdf-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
integration-perlbrew:
name: Integration (perlbrew)
if: ${{ inputs.os == 'ubuntu-latest' }}
runs-on: ${{ inputs.os }}
env:
PERL_CONFIGURATORS: LOCAL_PERLBREW
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Cache perlbrew
uses: actions/cache@v4
with:
path: |
~/perl5
~/.perlbrew
key: perlbrew-${{ runner.os }}
- name: Set up perlbrew
run: |
\curl -L https://install.perlbrew.pl | bash
source ~/perl5/perlbrew/etc/bashrc
bash -c 'perlbrew install --verbose perl-${{ env.PERL_TEST_VERSION }} --notest --noman || true'
perlbrew clean
source ~/perl5/perlbrew/etc/bashrc
perlbrew exec -q --with perl-${{ env.PERL_TEST_VERSION }} cpan install App::cpanminus <<<yes
bash -c 'perlbrew lib create perl-${{ env.PERL_TEST_VERSION }}@plugin_test || true'
perlbrew exec -q --with perl-${{ env.PERL_TEST_VERSION }}@plugin_test cpanm --notest ${{ env.TEST_PERL_MODULES }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 1200 &
./gradlew test -PintegrationTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: coverage-integration-perlbrew-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: perlbrew-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
integration-perlbrew-external-libs:
name: Integration (perlbrew with libs)
if: ${{ inputs.os != 'windows-latest' }}
runs-on: ${{ inputs.os }}
env:
PERL_CONFIGURATORS: LOCAL_PERLBREW_WITH_LIBS
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Cache perlbrew
uses: actions/cache@v4
with:
path: |
~/perl5
~/.perlbrew
key: perlbrew-${{ runner.os }}
- name: Set up perlbrew
run: |
\curl -L https://install.perlbrew.pl | bash
source ~/perl5/perlbrew/etc/bashrc
bash -c 'perlbrew install --verbose perl-${{ env.PERL_TEST_VERSION }} --notest --noman || true'
perlbrew clean
source ~/perl5/perlbrew/etc/bashrc
perlbrew exec -q --with perl-${{ env.PERL_TEST_VERSION }} cpan App::cpanminus <<<yes
bash -c 'perlbrew lib create perl-${{ env.PERL_TEST_VERSION }}@plugin_test || true'
perlbrew exec -q --with perl-${{ env.PERL_TEST_VERSION }}@plugin_test cpanm --notest ${{ env.TEST_PERL_MODULES }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 1200 &
./gradlew test -PintegrationTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: coverage-integration-perlbrew-libs-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: perbrew-libs-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
integration-system:
name: Integration (system)
if: ${{ inputs.os == 'windows-latest' }}
runs-on: ${{ inputs.os }}
env:
PERL_TEST_VERSION: 5.32.1
TEST_SYSTEM_PERL_INTERPRETER_PATH: C:/hostedtoolcache/windows/strawberry-perl/5.32.1/x64/perl/bin/perl.exe
PERL_CONFIGURATORS: LOCAL_SYSTEM
NO_FS_ROOTS_ACCESS_CHECK: true
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Install Strawberry Perl
if: ${{ inputs.os == 'windows-latest' }}
uses: shogo82148/actions-setup-perl@v1
with:
distribution: strawberry
perl-version: ${{ env.PERL_TEST_VERSION }}
- name: Configure Perl for Windows
shell: cmd
run: cpanm --notest ${{ env.TEST_PERL_MODULES }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 2400 &
./gradlew test -PintegrationTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: coverage-integration-system-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: system-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
integration-docker:
name: Integration (docker)
runs-on: ${{ inputs.os }}
if: ${{ inputs.os == 'ubuntu-latest' }}
env:
PERL_CONFIGURATORS: DOCKER_SYSTEM
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 1200 &
./gradlew test -PintegrationTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: coverage-integration-docker-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: docker-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
light-tests:
name: Light
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 3600 &
./gradlew test -PlightTests=1 --console plain
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: light-tests-coverage-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: light-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt
heavy-tests:
name: Heavy
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- name: Run tests
run: |
bash ./watcher.sh 3600 &
./gradlew test -PheavyTests=1 --console plain "-Pyoutrack.token=${{ env.YOUTRACK_TOKEN && env.YOUTRACK_TOKEN || 'skip' }}"
- name: Upload Coverage Data
if: ${{ env.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v4
with:
name: heavy-tests-coverage-${{ inputs.os }}
path: |
**/jacoco/*.exec
- name: Upload Snapshots
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: heavy-snapshot-${{ inputs.os }}
path: |
./snapshot.hprof
./jinfo.txt
./jstack.txt