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
What Operating System are you using (both controller, and any agents involved in the problem)?
Debian testing as started from the script:
#!/bin/bash
JENKINS_WAR_VERSION=2.479
JENKINS_WAR=jenkins-${JENKINS_WAR_VERSION}.war
PLUGIN_MANAGER_VERSION=2.13.0
PLUGIN_MANAGER_JAR=jenkins-plugin-manager-${PLUGIN_MANAGER_VERSION}.jar
if [ ! -f ../$PLUGIN_MANAGER_JAR ]; then
wget https://github.com/jenkinsci/plugin-installation-manager-tool/releases/download/${PLUGIN_MANAGER_VERSION}/$PLUGIN_MANAGER_JAR
mv $PLUGIN_MANAGER_JAR ..
fi
if [ ! -d plugins ]; then
mkdir plugins
fi
java -jar ../$PLUGIN_MANAGER_JAR --jenkins-version $JENKINS_WAR_VERSION --latest false --plugin-download-directory plugins --plugin-file plugins.txt
if [ ! -f ../$JENKINS_WAR ]; then
wget https://get.jenkins.io/war/${JENKINS_WAR_VERSION}/jenkins.war
mv jenkins*.war ../$JENKINS_WAR
fi
JENKINS_HOME=. java -jar ../$JENKINS_WAR
Using the plugins.txt file based on the list of plugins included earlier in the issue report
Reproduction steps
Run the shell script that download Jenkins 2.479 and the related plugins
Complete the setup wizard from a web browser by creating a new user and choosing to install no additional plugins
Create a Pipeline job and open the Pipeline Syntax Snippet Generator link (as described in this video)
Generate Pipeline syntax for the addInfoBadge Pipeline step and other Pipeline steps from the badge plugin. Error messages will be reported to the console log
Those error messages are not reported with badge plugin 1.13.
Expected Results
Pipeline syntax snippet generator should provide a working snippet for the user
Actual Results
Pipeline syntax snippet generator reports an error and stack trace is written to the Jenkins console log
Anything else?
No response
Are you interested in contributing a fix?
Unfortunately, I'm not available to help with this one.
The text was updated successfully, but these errors were encountered:
Jenkins and plugins versions report
Environment
What Operating System are you using (both controller, and any agents involved in the problem)?
Debian testing as started from the script:
Using the plugins.txt file based on the list of plugins included earlier in the issue report
Reproduction steps
addInfoBadge
Pipeline step and other Pipeline steps from the badge plugin. Error messages will be reported to the console logThose error messages are not reported with badge plugin 1.13.
Expected Results
Pipeline syntax snippet generator should provide a working snippet for the user
Actual Results
Pipeline syntax snippet generator reports an error and stack trace is written to the Jenkins console log
Anything else?
No response
Are you interested in contributing a fix?
Unfortunately, I'm not available to help with this one.
The text was updated successfully, but these errors were encountered: