You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (Stringcontent : List.of("src", "vars", "resources")) {
150
147
FilePathcontentDir = subdir.child(content);
151
148
if (contentDir.isDirectory()) {
152
-
listener.getLogger().println("Moving " + content + " to top level");
149
+
LOGGER.fine(() -> "Moving " + content + " to top level in " + target);
153
150
contentDir.renameTo(target.child(content));
154
151
}
155
152
}
156
153
// root itself will be deleted below
157
154
}
158
-
Set<String> deleted = newTreeSet<>();
159
155
if (!INCLUDE_SRC_TEST_IN_LIBRARIES) {
160
156
FilePathsrcTest = target.child("src/test");
161
157
if (srcTest.isDirectory()) {
162
158
listener.getLogger().println("Excluding src/test/ from checkout of " + scm.getKey() + " so that library test code cannot be accessed by Pipelines.");
163
159
listener.getLogger().println("To remove this log message, move the test code outside of src/. To restore the previous behavior that allowed access to files in src/test/, pass -D" + SCMSourceRetriever.class.getName() + ".INCLUDE_SRC_TEST_IN_LIBRARIES=true to the java command used to start Jenkins.");
0 commit comments