Skip to content

Commit

Permalink
Skipping integTest for rpm and deb distribution for CCR
Browse files Browse the repository at this point in the history
Signed-off-by: nandan <[email protected]>
  • Loading branch information
nandnkum committed Aug 2, 2024
1 parent 569acb0 commit aa322a5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions jenkins/opensearch/integ-test.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@ pipeline {
echo "Skipping tests for ${component_check} as is not present in the provided build manifest."
componentList -= component_check
}
// Skipping integTest for cross-cluster-replication component when running on deb and rpm distribution
if ((distribution.equals('rpm') || distribution.equals('deb')) && component_check == '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 aa322a5

Please sign in to comment.