Skip to content

chrisism/VSTS.ChocolateyTools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chocolatey Tools (Azure Devops task)

Azure Devopstasks for using Chocolatey during deployment.

Are these Azure Devops extensions helping you?

Details

With these tasks you can use Chocolatey in Azure Devops or TFS. Either install chocolatey self, or check if it installed, or just install one of the many packages available through Chocolatey.

For available packages check Chocolatey website

Available tasks

Install/Upgrade

Will download and install/upgrade Chocolatey on the server. Will only install if not already installed.

Available options

  • Upgrade (if needed): If already installed, it will upgrade Chocolatey if needed.

Install Package

Installs a package using Chocolatey.

Available options

  • Package: The package ID of the package to install. Check https://chocolatey.org/ for available packages
  • Version: Specific version of the package to install. Leave empty if you want to install the latest stable version.
  • Alternate package source: The source to find the package(s) to install. Special sources include: ruby, webpi, cygwin, windowsfeatures, and python. To specify more than one source, pass it with a semi-colon separating the values (-e.g. 'source1;source2'). Defaults to default feeds.
  • Other options: Add extra options or switches as needed.

Releases

1.1.1

  • Merged PR 8: Fixed version param for package installation (by miccha).

1.1.0

  • Added support for alternate package source (-s / --source) and you now can add custom other flags as needed.

1.0.8

  • Made tasks available for build pipeline.