Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

146,134

Downloads of v 1.641.0.0:

529

Last Update:

10 Dec 2015

Package Maintainer(s):

Software Author(s):

  • The Jenkins Team

Tags:

ci build jenkins admin

Jenkins CI

This is not the latest version of Jenkins CI available.

  • 1
  • 2
  • 3

1.641.0.0 | Updated: 10 Dec 2015

Downloads:

146,134

Downloads of v 1.641.0.0:

529

Maintainer(s):

Software Author(s):

  • The Jenkins Team

Jenkins CI 1.641.0.0

This is not the latest version of Jenkins CI available.

  • 1
  • 2
  • 3

Some Checks Are Exempted or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Pending


Verification Testing Exemption:

This requires Java 1.8 or 11 which hasn't been added as a dependency (due to the numerous flavours of Java out there).

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Jenkins CI, run the following command from the command line or from PowerShell:

>

To upgrade Jenkins CI, run the following command from the command line or from PowerShell:

>

To uninstall Jenkins CI, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade jenkins -y --source="'INTERNAL REPO URL'" --version="'1.641.0.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade jenkins -y --source="'INTERNAL REPO URL'" --version="'1.641.0.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install jenkins
  win_chocolatey:
    name: jenkins
    version: '1.641.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'jenkins' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.641.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller jenkins
{
    Name     = "jenkins"
    Version  = "1.641.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'jenkins':
  ensure   => '1.641.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 10 Dec 2015.

Description

Jenkins is an award-winning application that monitors executions of repeated jobs, such as building a software project or jobs run by cron. Among those things, current Jenkins focuses on the following two jobs:

  1. Building/testing software projects continuously, just like CruiseControl or DamageControl. In a nutshell, Jenkins provides an easy-to-use so-called continuous integration system, making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. The automated, continuous build increases the productivity.
  2. Monitoring executions of externally-run jobs, such as cron jobs and procmail jobs, even those that are run on a remote machine. For example, with cron, all you receive is regular e-mails that capture the output, and it is up to you to look at them diligently and notice when it broke. Jenkins keeps those outputs and makes it easy for you to notice when something is wrong.

tools\chocolateyInstall.ps1
$packageName = "jenkins"
# the $version variable below is automatically set by our update script
# we hardcode the version in this script, so that users can install specific
# versions from Chocolatey.org
$version = "1.641"
$zipFile = "jenkins-$version.zip"
$msiFile = "jenkins.msi"
$url = "http://mirrors.jenkins-ci.org/windows/$zipFile"
$url64 = $url
$silentArgs = "/quiet"
$validExitCodes = @(0)

try {
        $chocTempDir = Join-Path $env:TEMP "chocolatey"
        $tempDir = Join-Path $chocTempDir "$packageName"
        if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)}
        $file = Join-Path $tempDir $zipFile

        Get-ChocolateyWebFile $packageName $file $url $url64
        Get-ChocolateyUnzip $file $tempDir "" $packageName

        $file = Join-Path $tempDir $msiFile

        Install-ChocolateyInstallPackage $packageName 'msi' $silentArgs $file -validExitCodes $validExitCodes

} catch {
        throw
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Jenkins 2.440.1 1978 Wednesday, February 21, 2024 Approved
Jenkins 2.426.3 2010 Wednesday, January 24, 2024 Approved
Jenkins 2.426.2 1053 Wednesday, December 13, 2023 Approved
Jenkins 2.426.1 938 Wednesday, November 15, 2023 Approved
Jenkins 2.414.3 1551 Wednesday, October 18, 2023 Approved
Jenkins 2.414.2 1613 Wednesday, September 20, 2023 Approved
Jenkins 2.414.1 1070 Wednesday, August 23, 2023 Approved
Jenkins CI 2.401.3 918 Wednesday, July 26, 2023 Approved
Jenkins CI 2.401.2 938 Wednesday, June 28, 2023 Approved
Jenkins CI 2.401.1 1037 Monday, June 5, 2023 Approved
Jenkins CI 2.387.2 4458 Wednesday, April 5, 2023 Approved
Jenkins CI 2.387.1 1621 Friday, March 17, 2023 Approved
Jenkins CI 2.222.4 32866 Thursday, May 28, 2020 Approved
Jenkins CI 2.222.3 1469 Saturday, April 25, 2020 Approved
Jenkins CI 2.222.1 1761 Wednesday, March 25, 2020 Approved
Jenkins CI 2.204.5 828 Sunday, March 8, 2020 Approved
Jenkins CI 2.204.4 375 Wednesday, March 4, 2020 Approved
Jenkins CI 2.204.3 354 Saturday, February 29, 2020 Approved
Jenkins CI 2.204.2 971 Wednesday, January 29, 2020 Approved
Jenkins CI 2.204.1 1044 Thursday, December 19, 2019 Approved
Jenkins CI 2.190.3 1004 Thursday, November 21, 2019 Approved
Jenkins CI 2.190.2 1209 Tuesday, October 29, 2019 Approved
Jenkins CI 2.190.1 1358 Wednesday, September 25, 2019 Approved
Jenkins CI 2.176.3 1213 Wednesday, August 28, 2019 Approved
Jenkins CI 2.176.2 1316 Wednesday, July 17, 2019 Approved
Jenkins CI 2.176.1 1005 Monday, June 10, 2019 Approved
Jenkins CI 2.164.3 873 Friday, May 10, 2019 Approved
Jenkins CI 2.164.2 1009 Wednesday, April 10, 2019 Approved
Jenkins CI 2.164.1 1132 Thursday, March 14, 2019 Approved
Jenkins CI 2.150.3 4904 Monday, February 18, 2019 Approved
Jenkins CI 2.150.2 1318 Wednesday, January 16, 2019 Approved
Jenkins CI 2.150.1 930 Wednesday, December 5, 2018 Approved
Jenkins CI 2.138.3 654 Friday, November 9, 2018 Approved
Jenkins CI 2.138.2 704 Friday, October 12, 2018 Approved
Jenkins CI 2.138.1 336 Wednesday, November 14, 2018 Approved
Jenkins CI 2.89.2 6379 Friday, December 15, 2017 Approved
Jenkins CI 2.89.1 835 Friday, December 8, 2017 Approved
Jenkins CI 2.73.3 789 Tuesday, December 5, 2017 Approved
Jenkins CI 2.60.3 1940 Wednesday, September 13, 2017 Approved
Jenkins CI 2.46.3 2440 Friday, May 26, 2017 Approved
Jenkins CI 2.46.1 1241 Saturday, April 8, 2017 Approved
Jenkins CI 2.32.3 2328 Friday, March 10, 2017 Approved
Jenkins CI 2.32.2 1119 Friday, February 3, 2017 Approved
Jenkins CI 2.32.1 1009 Friday, January 6, 2017 Approved
Jenkins CI 2.19.4 1421 Friday, December 2, 2016 Approved
Jenkins CI 2.19.3 548 Monday, November 21, 2016 Approved
Jenkins CI 2.19.2 504 Monday, November 14, 2016 Approved
Jenkins CI 2.16.0.0 3630 Tuesday, August 2, 2016 Approved
Jenkins CI 2.0.0.0 582 Thursday, April 21, 2016 Approved
Jenkins CI 1.654.0.0 936 Tuesday, March 22, 2016 Approved
Jenkins CI 1.652.0.0 462 Tuesday, March 8, 2016 Approved
Jenkins CI 1.650.0.0 397 Thursday, February 25, 2016 Approved
Jenkins CI 1.649.0.0 401 Monday, February 22, 2016 Approved
Jenkins CI 1.648.0.0 406 Thursday, February 18, 2016 Approved
Jenkins CI 1.647.0.0 453 Thursday, February 4, 2016 Approved
Jenkins CI 1.646.0.0 391 Wednesday, January 27, 2016 Approved
Jenkins CI 1.645.0.0 490 Wednesday, January 20, 2016 Approved
Jenkins CI 1.644.0.0 462 Monday, January 11, 2016 Approved
Jenkins CI 1.643.0.0 557 Monday, January 4, 2016 Approved
Jenkins CI 1.641.0.0 529 Thursday, December 10, 2015 Approved
Jenkins CI 1.640.0.0 477 Monday, December 7, 2015 Approved
Jenkins CI 1.639.0.0 447 Monday, November 30, 2015 Approved
Jenkins CI 1.638.0.0 460 Tuesday, November 24, 2015 Approved
Jenkins CI 1.632.0.0 749 Thursday, October 8, 2015 Approved
Jenkins CI 1.629.0.0 643 Tuesday, September 15, 2015 Approved
Jenkins CI 1.628.0.0 415 Tuesday, September 8, 2015 Approved
Jenkins CI 1.627.0.0 454 Monday, August 31, 2015 Approved
Jenkins CI 1.626.0.0 432 Monday, August 24, 2015 Approved
Jenkins CI 1.624.0.0 526 Monday, August 10, 2015 Approved
Jenkins CI 1.623.0.0 419 Monday, August 3, 2015 Approved
Jenkins CI 1.620.0.0 427 Wednesday, July 15, 2015 Approved
Jenkins CI 1.619.0.0 409 Thursday, July 9, 2015 Approved
Jenkins CI 1.618.0.0 426 Monday, June 29, 2015 Approved
Jenkins CI 1.617.0.0 483 Monday, June 8, 2015 Approved
Jenkins CI 1.615.0.0 473 Tuesday, May 26, 2015 Approved
Jenkins CI 1.612.0.0 557 Monday, May 4, 2015 Approved
Jenkins CI 1.611.0.0 439 Monday, April 27, 2015 Approved
Jenkins CI 1.610.0.0 402 Tuesday, April 21, 2015 Approved
Jenkins CI 1.609.0.0 402 Monday, April 13, 2015 Approved
Jenkins CI 1.608.0.0 380 Monday, April 13, 2015 Approved
Jenkins CI 1.607.0.0 501 Tuesday, March 31, 2015 Approved
Jenkins CI 1.606.0.0 533 Tuesday, March 24, 2015 Approved
Jenkins CI 1.605.0.0 449 Tuesday, March 17, 2015 Approved
Jenkins CI 1.602.0.0 456 Monday, March 9, 2015 Approved
Jenkins CI 1.601.0.0 487 Wednesday, March 4, 2015 Approved
Jenkins CI 1.599.0.0 468 Wednesday, February 18, 2015 Approved
Jenkins CI 1.598.0.0 485 Monday, February 9, 2015 Approved
Jenkins CI 1.597.0.0 443 Monday, January 19, 2015 Approved
Jenkins CI 1.596.0.0 568 Monday, January 5, 2015 Approved
Jenkins CI 1.595.0.0 474 Monday, December 22, 2014 Approved
Jenkins CI 1.594.0.0 428 Friday, December 19, 2014 Approved
Jenkins CI 1.593.0.0 533 Monday, December 8, 2014 Approved
Jenkins CI 1.592.0.0 416 Friday, December 5, 2014 Approved
Jenkins CI 1.590.0.0 662 Monday, November 17, 2014 Approved
Jenkins CI 1.589.0.0 382 Wednesday, November 12, 2014 Approved
Jenkins CI 1.588.0.0 416 Thursday, November 6, 2014 Approved
Jenkins CI 1.585.0.0 439 Sunday, October 26, 2014 Approved
Jenkins CI 1.570.0.0 752 Monday, June 30, 2014 Approved
Jenkins CI 1.569.0.0 463 Tuesday, June 24, 2014 Approved
Jenkins CI 1.568.0.0 413 Wednesday, June 18, 2014 Approved
Jenkins CI 1.567.0.0 404 Wednesday, June 11, 2014 Approved
Jenkins CI 1.566.0.0 428 Friday, June 6, 2014 Approved
Jenkins CI 1.565.0.0 469 Tuesday, May 27, 2014 Approved
Jenkins CI 1.564.0.0 411 Friday, May 23, 2014 Approved
Jenkins CI 1.563.0.0 413 Tuesday, May 13, 2014 Approved
Jenkins CI 1.562.0.0 392 Tuesday, May 6, 2014 Approved
Jenkins CI 1.561.0.0 444 Wednesday, April 30, 2014 Approved
Jenkins CI 1.559.0.0 432 Tuesday, April 15, 2014 Approved
Jenkins CI 1.558.0.0 433 Monday, April 7, 2014 Approved
Jenkins CI 1.557.0.0 467 Friday, April 4, 2014 Approved
Jenkins CI 1.556.0.0 439 Friday, March 28, 2014 Approved
Jenkins CI 1.555.0.0 454 Friday, March 21, 2014 Approved
Jenkins CI 1.552.0.0 466 Friday, February 28, 2014 Approved
Jenkins CI 1.551.0.0 442 Sunday, February 16, 2014 Approved
Jenkins CI 1.550.0.0 430 Wednesday, February 12, 2014 Approved
Jenkins CI 1.549.0.0 518 Tuesday, January 28, 2014 Approved
Jenkins CI 1.548.0.0 429 Tuesday, January 21, 2014 Approved
Jenkins CI 1.543.0.0 530 Thursday, December 12, 2013 Approved
Jenkins CI 1.542.0.0 427 Wednesday, December 4, 2013 Approved
Jenkins CI 1.541.0.0 452 Tuesday, November 26, 2013 Approved
Jenkins CI 1.540.0.0 453 Tuesday, November 19, 2013 Approved
Jenkins CI 1.539.0.0 470 Friday, November 15, 2013 Approved
Jenkins CI 1.538.0.0 481 Monday, November 4, 2013 Approved
Jenkins CI 1.536.0.0 492 Tuesday, October 22, 2013 Approved
Jenkins CI 1.532.0.0 451 Thursday, September 26, 2013 Approved
Jenkins CI 1.530.0.0 488 Tuesday, September 10, 2013 Approved
Jenkins CI 1.529.0.0 500 Tuesday, August 27, 2013 Approved
Jenkins CI 1.528.0.0 455 Tuesday, August 20, 2013 Approved
Jenkins CI 1.527.0.0 420 Wednesday, August 14, 2013 Approved
Jenkins CI 1.525.0.0 456 Tuesday, July 30, 2013 Approved
Jenkins CI 1.524.0.0 465 Thursday, July 25, 2013 Approved
Jenkins CI 1.520.0.0 486 Wednesday, June 26, 2013 Approved
Jenkins CI 1.519.0.0 447 Wednesday, June 19, 2013 Approved
Jenkins CI 1.517.0.0 452 Tuesday, June 4, 2013 Approved
Jenkins CI 1.516.0.0 437 Tuesday, May 28, 2013 Approved
Jenkins CI 1.515.0.0 448 Thursday, May 23, 2013 Approved
Jenkins CI 1.514.0.0 485 Thursday, May 16, 2013 Approved
Jenkins CI 1.500.0.0 531 Friday, February 1, 2013 Approved
Jenkins CI 1.499.0.0 447 Sunday, January 20, 2013 Approved

This package has no dependencies.

Discussion for the Jenkins CI Package

Ground Rules:

  • This discussion is only about Jenkins CI and the Jenkins CI package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Jenkins CI, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus