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

reintroduce workaround for kubernetes-credentials-plugin #608

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,10 @@

PluginSourcesUnavailableException lastException = null;
for (String gitUrl : gitUrls) {
// TODO pending removal of bom 2.387 line

Check warning on line 298 in src/main/java/org/jenkins/tools/test/PluginCompatTester.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: pending removal of bom 2.387 line
gitUrl = gitUrl.replace(
"git://github.com/jenkinsci/kubernetes-credentials-plugin",
"https://github.com/jenkinsci/kubernetes-credentials-plugin");
try {
cloneImpl(gitUrl, scmTag, checkoutDirectory);
return; // checkout was ok
Expand Down