ChocolateyCoolWhip is a simple to install NuGet package that helps configure continuous integration and deployment of Chocolatey packages through AppVeyor.
Chocolatey is a package manager for Windows. Similar to apt-get for Linux or Homebrew for Macs.
For example, if you wanted to install GitHub Desktop all you'd need to do would be to run the following command:
c:\> choco install github
Chocolatey would then go out and download the GitHub Desktop installer as well as any dependencies (such as AutoHotkey in this instance) and install them. You'll be guaranteed that compatible versions of the applications will be installed.
For a list of the thousands of packages provided by Chocolatey, visit their packages page. They have a wide range of packages, from developer tools like node.js to end user apps like the ever popular media player VLC.
On check in AppVeyor will build your project and run tests.
When a GitHub release or git tag is created
- Your project is built
- Your tests are run
- All Chocolatey packages are packaged and
- Attached to the release in GitHub
- Pushed to Chocolatey
- Install CoolWhip
PM> Install-Package ChocolateyCoolWhip
- Encrypt GitHub & Nuget key in App Veyor
- Update the appveyor.yaml with the keys from above
- Save/commit changes
- Link AppVeyor to your repo
- AppVeyor: #1 Continuous Delivery service for Windows
- Robert Daniel Moore for his NuGet Test Harness also on GitHub
- Chocolatey for being awesome