Last active
August 6, 2026 14:01
-
-
Save JoSSte/39a38012392d48aea433425d9c87d544 to your computer and use it in GitHub Desktop.
Jenkins tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Debugging Jenkinsjob | |
| If you need more verbose logging while debugging a failing job you might get a message about running Jenkins temporarily with `-Dorg.jenkinsci.plugins.durabletask.BourneShellScript.LAUNCH_DIAGNOSTICS=true` | |
| Instead. go to your jenkins server's scripting console `https://<jenkins-host>/script` and type `org.jenkinsci.plugins.durabletask.BourneShellScript.LAUNCH_DIAGNOSTICS=true` (same as above, without the `-D` prefix) | |
| Rerun your job. | |
| (Note that you need to have the Overall/Administer permission) | |
| but this saves you from re-starting and potenitally interrupting several jobs | |
| ### References: | |
| https://exia.dev/blog/2022-12-01/Dynamic-Set-Jenkins-Plugin-Start-Parameters/#solution |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment