You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should install dependencies once and use them in each parallel job
This is the recommended way of achieving this is to install dependencies/store cache in a block and then restore cache and run tests in the parallel jobs. The recipe would be the following:
download the dependencies in block A
cache store dependencies in block A
create a prologue that cache restore the cached dependencies. if using parallelism this prologue will run for every job
run your tests in the block with parallelism
The text was updated successfully, but these errors were encountered:
Should install dependencies once and use them in each parallel job
This is the recommended way of achieving this is to install dependencies/store cache in a block and then restore cache and run tests in the parallel jobs. The recipe would be the following:
The text was updated successfully, but these errors were encountered: