File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function defineSandboxJob_build({
3333 ( ) => ( {
3434 executor : {
3535 name : 'sb_node_22_classic' ,
36- class : 'large ' ,
36+ class : 'medium+ ' ,
3737 } ,
3838 steps : [
3939 ...workflow . restoreLinux ( ) ,
Original file line number Diff line number Diff line change @@ -4,9 +4,8 @@ import { exec } from '../utils/exec';
44import { maxConcurrentTasks } from '../utils/maxConcurrentTasks' ;
55
66// The amount of VCPUs for the check task on CI is 4 (large resource)
7- const amountOfVCPUs = 3 ;
87
9- const parallel = `--parallel= ${ process . env . CI ? amountOfVCPUs - 1 : maxConcurrentTasks } `;
8+ const parallel = process . env . CI ? `--parallel= ${ maxConcurrentTasks } ` : '' ;
109
1110const linkCommand = `yarn nx run-many -t check ${ parallel } ` ;
1211const nolinkCommand = `yarn nx run-many -t check -c production ${ parallel } ` ;
You can’t perform that action at this time.
0 commit comments