mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[CI] Add new intake worker size with 2x memory, and move workspace to memory (#67676)
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
05675602ee
commit
7f2e32475a
1 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,8 @@ def label(size) {
|
||||||
switch(size) {
|
switch(size) {
|
||||||
case 's':
|
case 's':
|
||||||
return 'linux && immutable'
|
return 'linux && immutable'
|
||||||
|
case 's-highmem':
|
||||||
|
return 'tests-s'
|
||||||
case 'l':
|
case 'l':
|
||||||
return 'tests-l'
|
return 'tests-l'
|
||||||
case 'xl':
|
case 'xl':
|
||||||
|
@ -114,7 +116,7 @@ def ci(Map params, Closure closure) {
|
||||||
// Worker for running the current intake jobs. Just runs a single script after bootstrap.
|
// Worker for running the current intake jobs. Just runs a single script after bootstrap.
|
||||||
def intake(jobName, String script) {
|
def intake(jobName, String script) {
|
||||||
return {
|
return {
|
||||||
ci(name: jobName, size: 's', ramDisk: false) {
|
ci(name: jobName, size: 's-highmem', ramDisk: true) {
|
||||||
withEnv(["JOB=${jobName}"]) {
|
withEnv(["JOB=${jobName}"]) {
|
||||||
runbld(script, "Execute ${jobName}")
|
runbld(script, "Execute ${jobName}")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue