Higher default CPU, lower default memory

pull/265/head
Frostebite 2021-05-28 19:24:36 +01:00
parent 4ad3f3bf40
commit e8a987ea7e
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -678,10 +678,10 @@ class Input {
return core.getInput('githubToken') || '';
}
static get remoteBuildMemory() {
return core.getInput('remoteBuildMemory') || '800M';
return core.getInput('remoteBuildMemory') || '750M';
}
static get remoteBuildCpu() {
return core.getInput('remoteBuildCpu') || '0.25';
return core.getInput('remoteBuildCpu') || '1.0';
}
static get kubeVolumeSize() {
return core.getInput('kubeVolumeSize') || '5Gi';

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -106,11 +106,11 @@ class Input {
}
static get remoteBuildMemory() {
return core.getInput('remoteBuildMemory') || '800M';
return core.getInput('remoteBuildMemory') || '750M';
}
static get remoteBuildCpu() {
return core.getInput('remoteBuildCpu') || '0.25';
return core.getInput('remoteBuildCpu') || '1.0';
}
static get kubeVolumeSize() {