From 990f69f27283e60fb9a06432382f90dc74b5ed6a Mon Sep 17 00:00:00 2001 From: James Nord Date: Fri, 27 May 2022 22:16:45 +0100 Subject: [PATCH 1/2] Switch to using MSBuild as an non suggested wizard plugin CloudBees has its own list for platform-plugins and `locale` is not in that list. Looking between the 2 MSBuild is in both and suggested in neither so switch to that plugin. --- src/test/java/core/InstallWizardTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/core/InstallWizardTest.java b/src/test/java/core/InstallWizardTest.java index bf4d1111b7..1e53ac245b 100644 --- a/src/test/java/core/InstallWizardTest.java +++ b/src/test/java/core/InstallWizardTest.java @@ -96,8 +96,8 @@ public void wizardInstallCustomPluginsTest() throws IOException { WizardCustomizeJenkins wizardCustomize = new WizardCustomizeJenkins(jenkins); wizardCustomize.doSelectPluginsToInstall(); wizardCustomize.deselectAll(); - wizardCustomize.searchPlugin("Locale"); - wizardCustomize.selectPlugin("locale"); + wizardCustomize.searchPlugin("MSBuild"); + wizardCustomize.selectPlugin("msbuild"); wizardCustomize.startInstall(); wizardCustomize.shouldFinishInstallSuccessfully(); From 985b9611cf297104319a6fdc943cd36119f7a65c Mon Sep 17 00:00:00 2001 From: James Nord Date: Mon, 30 May 2022 11:42:40 +0100 Subject: [PATCH 2/2] trigger build