Skip to content

Commit

Permalink
Ignore RC versions when running Maven smoke tests (#8034)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-tkachenko-datadog authored Nov 28, 2024
1 parent 4d76fed commit 7f91a3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ class MavenSmokeTest extends CiVisibilitySmokeTest {
NodeList versionList = doc.getElementsByTagName("latest")
if (versionList.getLength() > 0) {
def version = versionList.item(0).getTextContent()
if (!version.contains('alpha') && !version.contains('beta')) {
if (!version.contains('alpha') && !version.contains('beta') && !version.contains('rc')) {
LOGGER.info("Will run the 'latest' tests with version ${version}")
return version
}
Expand Down

0 comments on commit 7f91a3e

Please sign in to comment.