Skip to content

Commit

Permalink
Restore some still-needed workarounds (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed May 31, 2023
1 parent 7604334 commit 9d7ff9c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/main/java/org/jenkins/tools/test/PluginCompatTester.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,36 @@ private static void cloneFromScm(
"git://github.com/jenkinsci/blueocean-display-url-plugin",
"https://github.com/jenkinsci/blueocean-display-url-plugin");

// TODO pending backport of
// https://github.com/jenkinsci/bootstrap5-api-plugin/commit/8c5f60ab5e21c03b68d696e7b760caa991b25aa9 to
// 2.375.x
gitUrl = gitUrl.replace(
"git://github.com/jenkinsci/bootstrap5-api-plugin",
"https://github.com/jenkinsci/bootstrap5-api-plugin");

// TODO pending backport of https://github.com/jenkinsci/cloudbees-folder-plugin/pull/260 to 2.361.x
gitUrl = gitUrl.replace(
"git://github.com/jenkinsci/cloudbees-folder-plugin",
"https://github.com/jenkinsci/cloudbees-folder-plugin");

// TODO pending backport of https://github.com/jenkinsci/custom-folder-icon-plugin/pull/109 to 2.361.x
gitUrl = gitUrl.replace(
"git://github.com/jenkinsci/custom-folder-icon-plugin",
"https://github.com/jenkinsci/custom-folder-icon-plugin");

// TODO pending backport of
// https://github.com/jenkinsci/data-tables-api-plugin/commit/97dc7555017e6c7ea17f0b67cc292773f1114a54 to
// 2.375.x
gitUrl = gitUrl.replace(
"git://github.com/jenkinsci/data-tables-api-plugin",
"https://github.com/jenkinsci/data-tables-api-plugin");

// TODO pending backport of
// https://github.com/jenkinsci/echarts-api-plugin/commit/d6951a26e6f1c27b82c8308359f7f76e182de3e3 to
// 2.375.x
gitUrl = gitUrl.replace(
"git://github.com/jenkinsci/echarts-api-plugin", "https://github.com/jenkinsci/echarts-api-plugin");

// TODO pending release of
// https://github.com/jenkinsci/google-metadata-plugin/pull/50
gitUrl = gitUrl.replace(
Expand Down

0 comments on commit 9d7ff9c

Please sign in to comment.