File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ export const check = defineJob(
154154 ( workflowName ) => ( {
155155 executor : {
156156 name : 'sb_node_22_classic' ,
157- class : 'xlarge ' ,
157+ class : 'large ' ,
158158 } ,
159159 steps : [
160160 ...workflow . restoreLinux ( ) ,
@@ -184,7 +184,7 @@ export const lint = defineJob(
184184 ( ) => ( {
185185 executor : {
186186 name : 'sb_node_22_classic' ,
187- class : 'xlarge ' ,
187+ class : 'large ' ,
188188 } ,
189189 steps : [
190190 ...workflow . restoreLinux ( ) ,
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ function defineSandboxJob_dev({
6868 executor : options . e2e
6969 ? {
7070 name : 'sb_playwright' ,
71- class : 'xlarge ' ,
71+ class : 'large ' ,
7272 }
7373 : {
7474 name : 'sb_node_22_classic' ,
@@ -267,7 +267,7 @@ export function defineSandboxFlow<Key extends string>(key: Key) {
267267 ( ) => ( {
268268 executor : {
269269 name : 'sb_playwright' ,
270- class : 'xlarge ' ,
270+ class : 'large ' ,
271271 } ,
272272 steps : [
273273 ...workflow . restoreLinux ( ) ,
@@ -371,7 +371,7 @@ export function defineWindowsSandboxDev(sandbox: ReturnType<typeof defineSandbox
371371 ( ) => ( {
372372 executor : {
373373 name : 'win/default' ,
374- size : 'xlarge ' ,
374+ size : 'large ' ,
375375 shell : 'bash.exe' ,
376376 } ,
377377 steps : [
@@ -420,7 +420,7 @@ export function defineWindowsSandboxBuild(sandbox: ReturnType<typeof defineSandb
420420 ( ) => ( {
421421 executor : {
422422 name : 'win/default' ,
423- size : 'xlarge ' ,
423+ size : 'large ' ,
424424 shell : 'bash.exe' ,
425425 } ,
426426 steps : [
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ 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 = 4 ;
7+ const amountOfVCPUs = 3 ;
88
99const parallel = `--parallel=${ process . env . CI ? amountOfVCPUs - 1 : maxConcurrentTasks } ` ;
1010
You can’t perform that action at this time.
0 commit comments