-
Notifications
You must be signed in to change notification settings - Fork 121
481 lines (451 loc) · 12.5 KB
/
test.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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
name: Test
on: pull_request
permissions:
contents: read
jobs:
bower:
runs-on: ubuntu-latest
needs: core
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Bower
run: npm install -g bower
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/bower
- name: Run tests
run: script/test bower
bundler:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
bundler: [ '2.1', '2.2', '2.3', '2.4' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler: ${{ matrix.bundler }}
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/bundler
- name: Run tests
run: script/test bundler
cabal:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
ghc: [ '9.0', '9.2', '9.4' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Setup Haskell
uses: haskell-actions/setup@e447c4c045e7744463435b4b731e125861006ebb
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: cache cabal dependencies
uses: actions/cache@v4
with:
path: |
~/.cabal/packages
~/.cabal/store
key: ${{ runner.os }}-cabal-${{ matrix.ghc }}-${{ hashFiles('**/app.cabal') }}
restore-keys: |
${{ runner.os }}-cabal-
- name: Set up fixtures
run: script/source-setup/cabal
- name: Run tests
run: script/test cabal
cargo:
runs-on: ubuntu-latest
needs: core
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Setup Rust toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af
with:
toolchain: stable
- name: cache cargo dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Set up fixtures
run: script/source-setup/cargo
- name: Run tests
run: script/test cargo
cocoapods:
runs-on: ubuntu-latest
needs: core
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/cocoapods
- name: Run tests
run: script/test cocoapods
composer:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
php: [ '7.4', '8.0' ]
steps:
- uses: actions/checkout@v4
- name: Setup php
uses: nanasess/setup-php@50c1c73e8ab7258f64ab525b05fcac481c0762db
with:
php-version: ${{ matrix.php }}
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/composer
- name: Run tests
run: script/test composer
core:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.0', '3.1', '3.2' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Build and lint
run: bundle exec rake rubocop build
- name: Core functionality tests
run: script/test core
dep:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
go: [ '1.17.x', '1.18.x', '1.19.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up go dep
run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- name: Set up fixtures
run: script/source-setup/dep
- name: Run tests
run: script/test dep
go:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
go: [ '1.17.x', '1.18.x', '1.19.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
cache-dependency-path: test/fixtures/go/src/test/go.sum
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/go
- name: Run tests
run: script/test go
gradle:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
# TODO: the reporting plugin used to gather data is not yet fully compatible with
# gradle 7, which is needed for compatibility with Java 16. after compatibility issues
# are resolved, update this matrix list with '16'.
# possibly fixed by https://github.com/jk1/Gradle-License-Report/pull/166
java: [ '11' ]
gradle: ['current', '7.6', '6.9.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up Java
uses: actions/[email protected]
with:
java-version: ${{ matrix.java }}
distribution: adopt
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
with:
gradle-version: ${{ matrix.gradle }}
- name: Bootstrap
run: script/bootstrap
- name: Run tests
run: script/test gradle
manifest:
runs-on: ubuntu-latest
needs: core
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Run tests
run: script/test manifest
mix:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
otp: [24.x, 25.x]
elixir: [ 1.13.x, 1.14.x ]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@5304e04ea2b355f03681464e683d92e3b2f18451
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/mix
- name: Run tests
run: script/test mix
npm:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
node_version: [ 14, 16, 18 ]
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: npm
cache-dependency-path: test/fixtures/npm/package-lock.json
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/npm
- name: Run tests
run: script/test npm
nuget:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
dotnet: [ '3.1.x', '5.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/nuget
- name: Run tests
run: script/test nuget
pip:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
python: [ '3.8', '3.9', '3.10' ]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: x64
cache: pip
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Install virtualenv
run: pip install virtualenv
- name: Set up fixtures
run: script/source-setup/pip
- name: Run tests
run: script/test pip
pipenv:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
python: [ '3.8', '3.10', '3.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: x64
cache: pipenv
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Install pipenv
run: pip install pipenv
- name: Set up fixtures
run: script/source-setup/pipenv
- name: Run tests
run: script/test pipenv
pnpm:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
pnpm_version: [ 7 ]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
name: Install pnpm
id: pnpm-install
with:
version: ${{ matrix.pnpm_version }}
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/pnpm
- name: Run tests
run: script/test pnpm
swift:
runs-on: ubuntu-20.04
needs: core
strategy:
matrix:
swift: [ "5.7", "5.6" ]
steps:
- uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@3aed395c5397f62deb91d8fe7af1418a9ae4d16f
with:
swift-version: ${{ matrix.swift }}
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- uses: actions/cache@v4
name: cache spm dependencies
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Set up fixtures
run: script/source-setup/swift
- name: Run tests
run: script/test swift
yarn-v1:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
# not using 1.0.0 because it doesn't support `yarn list --production`
yarn_version: [ 1.4.0, latest ]
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 12
cache: yarn
cache-dependency-path: test/fixtures/yarn/v1/yarn.lock
- name: Install Yarn
run: npm install -g yarn@${YARN_VERSION}
env:
YARN_VERSION: ${{ matrix.yarn_version }}
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/yarn/v1
- name: Run tests
run: script/test yarn/v1
yarn-berry:
runs-on: ubuntu-latest
needs: core
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 12
cache: yarn
cache-dependency-path: test/fixtures/yarn/berry/yarn.lock
- name: Install Yarn
run: npm install -g yarn
- name: Set up Ruby
uses: ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf
with:
bundler-cache: true
- name: Set up fixtures
run: script/source-setup/yarn/berry
- name: Run tests
run: script/test yarn/berry