Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
chore: rename Jenkins stage to include suite (#2057) (#2058)
Browse files Browse the repository at this point in the history
* chore: rename Jenkins stage to include suite

* fix: use right machine type for CentOS arm

(cherry picked from commit f5e0db1)

Co-authored-by: Manuel de la Peña <[email protected]>
  • Loading branch information
mergify[bot] and mdelapenya authored Jan 26, 2022
1 parent 6431fab commit 6f9cfec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/.e2e-tests-for-elastic-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PLATFORMS:
username: admin
centos8_arm64:
image: "ami-01cdc9e8306344fe0"
instance_type: "c5.4xlarge"
instance_type: "a1.large"
username: centos
centos8_amd64:
image: "ami-045b0a05944af45c1"
Expand Down
2 changes: 1 addition & 1 deletion .ci/.e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PLATFORMS:
username: admin
centos8_arm64:
image: "ami-01cdc9e8306344fe0"
instance_type: "c5.4xlarge"
instance_type: "a1.large"
username: centos
centos8_amd64:
image: "ami-045b0a05944af45c1"
Expand Down
4 changes: 2 additions & 2 deletions .ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,9 @@ def checkTestSuite(Map parallelTasks = [:], Map item = [:]) {
def pullRequestFilter = scenario.containsKey('pullRequestFilter') ? scenario.pullRequestFilter : ''
def tags = scenario.tags
platformsValue.each { platform ->
log(level: 'INFO', text: "Adding ${platform}:${suite}:${tags} test suite to the build execution")
log(level: 'INFO', text: "Adding ${suite}:${platform}:${tags} test suite to the build execution")
machineInfo = getMachineInfo("${env.WORKSPACE}/${env.BASE_DIR}", platform)
parallelTasks["${platform}_${tags}"] = generateFunctionalTestStep(name: "${name}",
parallelTasks["${suite}_${platform}_${tags}"] = generateFunctionalTestStep(name: "${name}",
platform: platform,
suite: "${suite}",
tags: "${tags}",
Expand Down

0 comments on commit 6f9cfec

Please sign in to comment.