You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Developers
I am trying to fix our plugin build (sonargraph-integration-plugin) on jenkins-ci. It always fails during a tool installation - we install Sonargraph-Build as a tool for our tests. This is done by downloading a zip file from a URL and then unpacking it. This all runs without issues on Github, our own Jenkins and on a local machine. Now I am wondering if there are size restrictions for tool downloads on your server. Sonargraph-Build needs about 280 MB. Here is the stack trace, if fails when trying to chmod a file, that should have been in the zipfile it unpacked, but cannot find:
15:35:49 java.nio.file.NoSuchFileException: /home/jenkins/agent/workspace/graph-integration-plugin_develop/target/Tools/SonargraphBuild/newest/SonargraphBuild-15.4.3.155_2025-10-02/plugins/org.eclipse.equinox.preferences_3.11.100.v20240327-0645.jar 15:35:49 at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:92) 15:35:49 at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) 15:35:49 at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) 15:35:49 at java.base/sun.nio.fs.UnixFileAttributeViews$Posix.setMode(UnixFileAttributeViews.java:277) 15:35:49 at java.base/sun.nio.fs.UnixFileAttributeViews$Posix.setPermissions(UnixFileAttributeViews.java:299) 15:35:49 at java.base/java.nio.file.Files.setPosixFilePermissions(Files.java:2170) 15:35:49 at hudson.FilePath._chmod(FilePath.java:2009)
Alexander von Zitzewitz
unread,
Oct 9, 2025, 12:46:25 PM (2 days ago) Oct 9
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Developers
Solved: replaced download URL with https instead of http. leaving that here for future users, that run into the same problem