@@ -246,11 +246,8 @@ jobs:
246
246
- " -r=stable --env=development --persistent"
247
247
- " -r=experimental --env=development --persistent"
248
248
shard :
249
- - 1/5
250
- - 2/5
251
- - 3/5
252
- - 4/5
253
- - 5/5
249
+ - 1/2
250
+ - 2/2
254
251
steps :
255
252
- uses : actions/checkout@v4
256
253
with :
@@ -278,7 +275,7 @@ jobs:
278
275
if : steps.node_modules.outputs.cache-hit != 'true'
279
276
- run : yarn --cwd compiler install --frozen-lockfile
280
277
if : steps.node_modules.outputs.cache-hit != 'true'
281
- - run : yarn test ${{ matrix.params }} --ci --shard=${{ matrix.shard }}
278
+ - run : yarn test ${{ matrix.params }} --ci
282
279
283
280
# ----- BUILD -----
284
281
build_and_lint :
@@ -289,7 +286,7 @@ jobs:
289
286
fail-fast : false
290
287
matrix :
291
288
# 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 ]
289
+ worker_id : [0,1,2,3,4]
293
290
release_channel : [stable, experimental]
294
291
steps :
295
292
- uses : actions/checkout@v4
@@ -322,7 +319,7 @@ jobs:
322
319
if : steps.node_modules.outputs.cache-hit != 'true'
323
320
- run : yarn --cwd compiler install --frozen-lockfile
324
321
if : steps.node_modules.outputs.cache-hit != 'true'
325
- - run : yarn build --index=${{ matrix.worker_id }} --total=25 --r=${{ matrix.release_channel }} --ci
322
+ - run : yarn build --index=${{ matrix.worker_id }} --total=5 --r=${{ matrix.release_channel }} --ci
326
323
env :
327
324
CI : github
328
325
RELEASE_CHANNEL : ${{ matrix.release_channel }}
@@ -374,17 +371,6 @@ jobs:
374
371
375
372
# TODO: Test more persistent configurations?
376
373
]
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
374
runs-on : ubuntu-latest
389
375
steps :
390
376
- uses : actions/checkout@v4
@@ -421,7 +407,7 @@ jobs:
421
407
merge-multiple : true
422
408
- name : Display structure of build
423
409
run : ls -R build
424
- - run : yarn test --build ${{ matrix.test_params }} --shard=${{ matrix.shard }} -- ci
410
+ - run : yarn test --build ${{ matrix.test_params }} --ci
425
411
426
412
process_artifacts_combined :
427
413
name : Process artifacts combined
0 commit comments