Skip to content

Commit

Permalink
[CI] Add new intake worker size with 2x memory, and move workspace to…
Browse files Browse the repository at this point in the history
… memory (#67676)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
2 people authored and jbudz committed May 28, 2020
1 parent 0783ce7 commit 32a5e96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vars/workers.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ def label(size) {
switch(size) {
case 's':
return 'linux && immutable'
case 's-highmem':
return 'tests-s'
case 'l':
return 'tests-l'
case 'xl':
Expand Down Expand Up @@ -114,7 +116,7 @@ def ci(Map params, Closure closure) {
// Worker for running the current intake jobs. Just runs a single script after bootstrap.
def intake(jobName, String script) {
return {
ci(name: jobName, size: 's', ramDisk: false) {
ci(name: jobName, size: 's-highmem', ramDisk: true) {
withEnv(["JOB=${jobName}"]) {
runbld(script, "Execute ${jobName}")
}
Expand Down

0 comments on commit 32a5e96

Please sign in to comment.