Skip to content

Commit

Permalink
Skipping integTest for rpm and deb distribution for CCR (#4905)
Browse files Browse the repository at this point in the history
Signed-off-by: nandan <[email protected]>
  • Loading branch information
nandnkum authored Aug 8, 2024
1 parent 408471b commit b6040a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions jenkins/opensearch/integ-test.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,14 @@ pipeline {
echo "Skipping tests for ${component_check} as is not present in the provided build manifest."
componentList -= component_check
}
// Due to inability to install multiple versions of deb/rpm packages on the same EC2 host.
// CCR plugin remoteIntegTest are failing in deb and rpm distribution due to multiple clusters are not forming.(Issue-https://github.com/opensearch-project/opensearch-build/issues/4610)
// A multi-cluster setup is needed. TODO: Explore multi-cluster setup solutions.
// Temporarily Skipping integTest for cross-cluster-replication component when running on deb and rpm distribution.
if ((distribution.equals('rpm') || distribution.equals('deb')) && component_check.equals('cross-cluster-replication')) {
echo "Skipping integTest for ${distribution} distribution for cross-cluster-replication"
componentList -= component_check
}
}
echo "Testing components: ${componentList}"
currentBuild.description = "$TEST_MANIFEST, $version, $architecture, $platform, $buildId, $distribution, $componentList"
Expand Down

0 comments on commit b6040a3

Please sign in to comment.