@@ -219,7 +219,7 @@ jobs:
219
219
220
220
# ----- TESTS -----
221
221
test :
222
- name : yarn test ${{ matrix.params }} (Shard ${{ matrix.shard }})
222
+ name : yarn test ${{ matrix.params }}
223
223
needs : [runtime_compiler_node_modules_cache]
224
224
runs-on : ubuntu-latest
225
225
strategy :
@@ -245,12 +245,6 @@ jobs:
245
245
# TODO: Test more persistent configurations?
246
246
- " -r=stable --env=development --persistent"
247
247
- " -r=experimental --env=development --persistent"
248
- shard :
249
- - 1/5
250
- - 2/5
251
- - 3/5
252
- - 4/5
253
- - 5/5
254
248
steps :
255
249
- uses : actions/checkout@v4
256
250
with :
@@ -278,7 +272,7 @@ jobs:
278
272
if : steps.node_modules.outputs.cache-hit != 'true'
279
273
- run : yarn --cwd compiler install --frozen-lockfile
280
274
if : steps.node_modules.outputs.cache-hit != 'true'
281
- - run : yarn test ${{ matrix.params }} --ci --shard=${{ matrix.shard }}
275
+ - run : yarn test ${{ matrix.params }} --ci
282
276
283
277
# ----- BUILD -----
284
278
build_and_lint :
@@ -289,7 +283,7 @@ jobs:
289
283
fail-fast : false
290
284
matrix :
291
285
# yml is dumb. update the --total arg to yarn build if you change the number of workers
292
- worker_id : [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 ]
286
+ worker_id : [0,1,2,3,4]
293
287
release_channel : [stable, experimental]
294
288
steps :
295
289
- uses : actions/checkout@v4
@@ -322,7 +316,7 @@ jobs:
322
316
if : steps.node_modules.outputs.cache-hit != 'true'
323
317
- run : yarn --cwd compiler install --frozen-lockfile
324
318
if : steps.node_modules.outputs.cache-hit != 'true'
325
- - run : yarn build --index=${{ matrix.worker_id }} --total=25 --r=${{ matrix.release_channel }} --ci
319
+ - run : yarn build --index=${{ matrix.worker_id }} --total=5 --r=${{ matrix.release_channel }} --ci
326
320
env :
327
321
CI : github
328
322
RELEASE_CHANNEL : ${{ matrix.release_channel }}
@@ -374,17 +368,6 @@ jobs:
374
368
375
369
# TODO: Test more persistent configurations?
376
370
]
377
- shard :
378
- - 1/10
379
- - 2/10
380
- - 3/10
381
- - 4/10
382
- - 5/10
383
- - 6/10
384
- - 7/10
385
- - 8/10
386
- - 9/10
387
- - 10/10
388
371
runs-on : ubuntu-latest
389
372
steps :
390
373
- uses : actions/checkout@v4
@@ -421,7 +404,7 @@ jobs:
421
404
merge-multiple : true
422
405
- name : Display structure of build
423
406
run : ls -R build
424
- - run : yarn test --build ${{ matrix.test_params }} --shard=${{ matrix.shard }} -- ci
407
+ - run : yarn test --build ${{ matrix.test_params }} --ci
425
408
426
409
process_artifacts_combined :
427
410
name : Process artifacts combined
0 commit comments