Skip to content

Commit 3300000

Browse files
committed
decrease resource-sizes to lower CI cost
1 parent f1c8392 commit 3300000

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

scripts/ci/common-jobs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(),

scripts/ci/sandboxes.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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: [

scripts/tasks/check.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { exec } from '../utils/exec';
44
import { 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

99
const parallel = `--parallel=${process.env.CI ? amountOfVCPUs - 1 : maxConcurrentTasks}`;
1010

0 commit comments

Comments
 (0)