Higher default CPU, lower default memory
parent
4ad3f3bf40
commit
e8a987ea7e
|
|
@ -678,10 +678,10 @@ class Input {
|
||||||
return core.getInput('githubToken') || '';
|
return core.getInput('githubToken') || '';
|
||||||
}
|
}
|
||||||
static get remoteBuildMemory() {
|
static get remoteBuildMemory() {
|
||||||
return core.getInput('remoteBuildMemory') || '800M';
|
return core.getInput('remoteBuildMemory') || '750M';
|
||||||
}
|
}
|
||||||
static get remoteBuildCpu() {
|
static get remoteBuildCpu() {
|
||||||
return core.getInput('remoteBuildCpu') || '0.25';
|
return core.getInput('remoteBuildCpu') || '1.0';
|
||||||
}
|
}
|
||||||
static get kubeVolumeSize() {
|
static get kubeVolumeSize() {
|
||||||
return core.getInput('kubeVolumeSize') || '5Gi';
|
return core.getInput('kubeVolumeSize') || '5Gi';
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -106,11 +106,11 @@ class Input {
|
||||||
}
|
}
|
||||||
|
|
||||||
static get remoteBuildMemory() {
|
static get remoteBuildMemory() {
|
||||||
return core.getInput('remoteBuildMemory') || '800M';
|
return core.getInput('remoteBuildMemory') || '750M';
|
||||||
}
|
}
|
||||||
|
|
||||||
static get remoteBuildCpu() {
|
static get remoteBuildCpu() {
|
||||||
return core.getInput('remoteBuildCpu') || '0.25';
|
return core.getInput('remoteBuildCpu') || '1.0';
|
||||||
}
|
}
|
||||||
|
|
||||||
static get kubeVolumeSize() {
|
static get kubeVolumeSize() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue