A generic tool installer. You define how tools get installed, and the plugin will automatically install them when needed.
A job will often require a tool not already installed on your Jenkins agents. In large environments, this often results in waiting on an administrator. The goal of this plugin is to let users manage their own tools, without requiring this administrator involvement.
Using this plugin, you can define a script (or just a URL) for installing a tool using standard Jenkins Tool Installers. Plugins like Extra Tool Installers can be also used in this plugin. You then define which jobs require the tool, and the plugin installs them as needed before the build runs.
- See GitHub Releases for version 0.7 and above
- See the Plugin Wiki for older releases
Let's say that you have a build that needs NodeJS. It is possible to use a NodeJS Plugin for it, but we will use it as an example.
- Go to the Manage Jenkins > Global Tool Configuration page and to find the Custom Tool section there.
- Add a new NodeJS Tool
- Configure the tool installer. E.g. you can use a script as in the example below
- Configure Exported paths. The field lets you specify multiple directory patterns which will be added to the $PATH so that your build needn't know where the tool is actually installed
For Freestyle projects you need to add the tool requirement to your job's Build Environment (aka "build wrappers").
Then, you can just use the tool in your job, without having to know where it's installed.
The plugin will install it as needed before your job runs, and make sure the $PATH
is setup correctly:
Custom Tools plugin supports versioning of tools. Versions can be configured in the global configurations and then used to install specific versions of tools in Jenkins jobs.
WARNING: This feature is a subject to the breaking changes in the future. See JENKINS-32662 for more info |
---|
Currently the plugin uses the functionality provided by the Extended Choice Parameter plugin, but it's a subject for a change in the future. Extended Choice Parameter plugin allows to setup versions locally in the global configuration or to reference a property file with the version listing.
If a Custom Tool has versioning enabled, Custom Tools starts retrieving versions during the tool installation. Version configuration example:
Some tool installers support TOOL_VERSION variables (e.g. all installers from Extra Tool Installers Plugin, so you can use versions in the installer configurations.
Tool version parameter is available for Jenkins jobs. If it is not specified, a default version will be used.
Defining version parameter when starting a build: