Merge pull request #17878 from storybookjs/tech/change-ci-parallelism-bootstrap

CI: set parallelism of nx to 2
This commit is contained in:
Yann Braga 2022-04-14 09:35:26 +02:00 committed by GitHub
commit dd7967de83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ jobs:
command: yarn install --immutable
- run:
name: Bootstrap
command: yarn bootstrap --core
command: yarn bootstrap --build --manager
- save_cache:
name: Save Yarn cache
key: build-yarn-2-cache-v3--{{ checksum "yarn.lock" }}

View File

@ -103,7 +103,7 @@ function run() {
command: () => {
log.info(prefix, 'prepare');
spawn(
`nx run-many --target="prepare" --all --parallel ${
`nx run-many --target="prepare" --all --parallel=2 ${
process.env.CI ? `--max-parallel=${maxConcurrentTasks}` : ''
} -- --optimized`
);