Created
October 9, 2020 10:49
-
-
Save gdm/f394f8834a546a827bcd010a9186d6b0 to your computer and use it in GitHub Desktop.
Get jenkins plugins
This file contains 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
# Generates list of jenkins plugins compatible with /usr/local/bin/install-plugins.sh (distributed in jenkins Docker) | |
# The output of this command (colon-separated list of items like 'htmlpublisher:1.23') should be | |
# passed as an input for /usr/local/bin/install-plugins.sh script | |
curl -u $JENKINS_USER:$JENKINS_PASSWORD \ | |
"http://localhost:8080/pluginManager/api/xml?depth=1&xpath=/*/*/shortName|/*/*/version&wrapper=plugins" | \ | |
perl -pe 's/.*?<shortName>([\w-]+).*?<version>([^<]+)(<\/\w+>)+/\1 \2\n/g' | \ | |
sed 's/ /:/' | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment