Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the LATEST_RELEASE version of SQ in the plugin ITs (temporary) #6950

Merged
merged 2 commits into from Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion its/src/test/java/com/sonar/it/csharp/Tests.java
Expand Up @@ -78,7 +78,7 @@ public class Tests {
@ClassRule
public static final Orchestrator ORCHESTRATOR = Orchestrator.builderEnv()
.useDefaultAdminCredentialsForBuilds(true)
.setSonarVersion(TestUtils.replaceLtsVersion(System.getProperty("sonar.runtimeVersion", "DEV")))
.setSonarVersion(TestUtils.replaceLtsVersion(System.getProperty("sonar.runtimeVersion", "LATEST_RELEASE")))
.addPlugin(TestUtils.getPluginLocation("sonar-csharp-plugin")) // Do not add VB.NET here, use shared project instead
.setEdition(Edition.DEVELOPER)
.restoreProfileAtStartup(FileLocation.of("profiles/no_rule.xml"))
Expand Down
2 changes: 1 addition & 1 deletion its/src/test/java/com/sonar/it/shared/Tests.java
Expand Up @@ -50,7 +50,7 @@ public class Tests {
@ClassRule
public static final Orchestrator ORCHESTRATOR = Orchestrator.builderEnv()
.useDefaultAdminCredentialsForBuilds(true)
.setSonarVersion(TestUtils.replaceLtsVersion(System.getProperty("sonar.runtimeVersion", "DEV")))
.setSonarVersion(TestUtils.replaceLtsVersion(System.getProperty("sonar.runtimeVersion", "LATEST_RELEASE")))
.addPlugin(TestUtils.getPluginLocation("sonar-csharp-plugin"))
.addPlugin(TestUtils.getPluginLocation("sonar-vbnet-plugin"))
// ScannerCliTest: Fixed version for the HTML plugin as we don't want to have failures in case of changes there.
Expand Down
2 changes: 1 addition & 1 deletion its/src/test/java/com/sonar/it/vbnet/Tests.java
Expand Up @@ -60,7 +60,7 @@ public class Tests {
@ClassRule
public static final Orchestrator ORCHESTRATOR = Orchestrator.builderEnv()
.useDefaultAdminCredentialsForBuilds(true)
.setSonarVersion(TestUtils.replaceLtsVersion(System.getProperty("sonar.runtimeVersion", "DEV")))
.setSonarVersion(TestUtils.replaceLtsVersion(System.getProperty("sonar.runtimeVersion", "LATEST_RELEASE")))
.addPlugin(TestUtils.getPluginLocation("sonar-vbnet-plugin")) // Do not add C# here, use shared project instead
.restoreProfileAtStartup(FileLocation.of("profiles/vbnet_no_rule.xml"))
.restoreProfileAtStartup(FileLocation.of("profiles/vbnet_class_name.xml"))
Expand Down