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:

152,862

Downloads of v 1.562.0.0:

409

Last Update:

06 May 2014

Package Maintainer(s):

Software Author(s):

  • The Jenkins Team

Tags:

ci build jenkins

Jenkins CI

This is not the latest version of Jenkins CI available.

  • 1
  • 2
  • 3

1.562.0.0 | Updated: 06 May 2014

Downloads:

152,862

Downloads of v 1.562.0.0:

409

Maintainer(s):

Software Author(s):

  • The Jenkins Team

Tags:

ci build jenkins

Jenkins CI 1.562.0.0

This is not the latest version of Jenkins CI available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by The Jenkins Team. The inclusion of The Jenkins Team trademark(s), if any, upon this webpage is solely to identify The Jenkins Team goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Unknown


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.562.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.562.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.562.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.562.0.0'
end

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


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

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


package { 'jenkins':
  ensure   => '1.562.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 04 Dec 2014.

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.

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.452.3 612 Wednesday, July 10, 2024 Approved
Jenkins 2.452.2 697 Wednesday, June 12, 2024 Approved
Jenkins 2.452.1 592 Wednesday, May 15, 2024 Approved
Jenkins 2.440.3 754 Wednesday, April 17, 2024 Approved
Jenkins 2.440.2 1453 Wednesday, March 20, 2024 Approved
Jenkins 2.440.1 1996 Wednesday, February 21, 2024 Approved
Jenkins 2.426.3 2022 Wednesday, January 24, 2024 Approved
Jenkins 2.426.2 1075 Wednesday, December 13, 2023 Approved
Jenkins 2.426.1 961 Wednesday, November 15, 2023 Approved
Jenkins 2.414.3 1584 Wednesday, October 18, 2023 Approved
Jenkins 2.414.2 1641 Wednesday, September 20, 2023 Approved
Jenkins 2.414.1 1097 Wednesday, August 23, 2023 Approved
Jenkins CI 2.401.3 947 Wednesday, July 26, 2023 Approved
Jenkins CI 2.401.2 962 Wednesday, June 28, 2023 Approved
Jenkins CI 2.401.1 1049 Monday, June 5, 2023 Approved
Jenkins CI 2.387.2 4472 Wednesday, April 5, 2023 Approved
Jenkins CI 2.387.1 1647 Friday, March 17, 2023 Approved
Jenkins CI 2.222.4 32906 Thursday, May 28, 2020 Approved
Jenkins CI 2.222.3 1483 Saturday, April 25, 2020 Approved
Jenkins CI 2.222.1 1776 Wednesday, March 25, 2020 Approved
Jenkins CI 2.204.5 843 Sunday, March 8, 2020 Approved
Jenkins CI 2.204.4 402 Wednesday, March 4, 2020 Approved
Jenkins CI 2.204.3 369 Saturday, February 29, 2020 Approved
Jenkins CI 2.204.2 988 Wednesday, January 29, 2020 Approved
Jenkins CI 2.204.1 1059 Thursday, December 19, 2019 Approved
Jenkins CI 2.190.3 1022 Thursday, November 21, 2019 Approved
Jenkins CI 2.190.2 1225 Tuesday, October 29, 2019 Approved
Jenkins CI 2.190.1 1374 Wednesday, September 25, 2019 Approved
Jenkins CI 2.176.3 1227 Wednesday, August 28, 2019 Approved
Jenkins CI 2.176.2 1330 Wednesday, July 17, 2019 Approved
Jenkins CI 2.176.1 1023 Monday, June 10, 2019 Approved
Jenkins CI 2.164.3 891 Friday, May 10, 2019 Approved
Jenkins CI 2.164.2 1025 Wednesday, April 10, 2019 Approved
Jenkins CI 2.164.1 1154 Thursday, March 14, 2019 Approved
Jenkins CI 2.150.3 4918 Monday, February 18, 2019 Approved
Jenkins CI 2.150.2 1341 Wednesday, January 16, 2019 Approved
Jenkins CI 2.150.1 945 Wednesday, December 5, 2018 Approved
Jenkins CI 2.138.3 674 Friday, November 9, 2018 Approved
Jenkins CI 2.138.2 720 Friday, October 12, 2018 Approved
Jenkins CI 2.138.1 356 Wednesday, November 14, 2018 Approved
Jenkins CI 2.89.2 6401 Friday, December 15, 2017 Approved
Jenkins CI 2.89.1 856 Friday, December 8, 2017 Approved
Jenkins CI 2.73.3 808 Tuesday, December 5, 2017 Approved
Jenkins CI 2.60.3 1956 Wednesday, September 13, 2017 Approved
Jenkins CI 2.46.3 2461 Friday, May 26, 2017 Approved
Jenkins CI 2.46.1 1263 Saturday, April 8, 2017 Approved
Jenkins CI 2.32.3 2350 Friday, March 10, 2017 Approved
Jenkins CI 2.32.2 1133 Friday, February 3, 2017 Approved
Jenkins CI 2.32.1 1024 Friday, January 6, 2017 Approved
Jenkins CI 2.19.4 1435 Friday, December 2, 2016 Approved
Jenkins CI 2.19.3 566 Monday, November 21, 2016 Approved
Jenkins CI 2.19.2 523 Monday, November 14, 2016 Approved
Jenkins CI 2.16.0.0 3653 Tuesday, August 2, 2016 Approved
Jenkins CI 2.0.0.0 594 Thursday, April 21, 2016 Approved
Jenkins CI 1.654.0.0 956 Tuesday, March 22, 2016 Approved
Jenkins CI 1.652.0.0 484 Tuesday, March 8, 2016 Approved
Jenkins CI 1.650.0.0 417 Thursday, February 25, 2016 Approved
Jenkins CI 1.649.0.0 418 Monday, February 22, 2016 Approved
Jenkins CI 1.648.0.0 426 Thursday, February 18, 2016 Approved
Jenkins CI 1.647.0.0 467 Thursday, February 4, 2016 Approved
Jenkins CI 1.646.0.0 414 Wednesday, January 27, 2016 Approved
Jenkins CI 1.645.0.0 509 Wednesday, January 20, 2016 Approved
Jenkins CI 1.644.0.0 482 Monday, January 11, 2016 Approved
Jenkins CI 1.643.0.0 576 Monday, January 4, 2016 Approved
Jenkins CI 1.641.0.0 549 Thursday, December 10, 2015 Approved
Jenkins CI 1.640.0.0 498 Monday, December 7, 2015 Approved
Jenkins CI 1.639.0.0 464 Monday, November 30, 2015 Approved
Jenkins CI 1.638.0.0 477 Tuesday, November 24, 2015 Approved
Jenkins CI 1.632.0.0 767 Thursday, October 8, 2015 Approved
Jenkins CI 1.629.0.0 661 Tuesday, September 15, 2015 Approved
Jenkins CI 1.628.0.0 431 Tuesday, September 8, 2015 Approved
Jenkins CI 1.627.0.0 471 Monday, August 31, 2015 Approved
Jenkins CI 1.626.0.0 449 Monday, August 24, 2015 Approved
Jenkins CI 1.624.0.0 543 Monday, August 10, 2015 Approved
Jenkins CI 1.623.0.0 434 Monday, August 3, 2015 Approved
Jenkins CI 1.620.0.0 440 Wednesday, July 15, 2015 Approved
Jenkins CI 1.619.0.0 423 Thursday, July 9, 2015 Approved
Jenkins CI 1.618.0.0 445 Monday, June 29, 2015 Approved
Jenkins CI 1.617.0.0 504 Monday, June 8, 2015 Approved
Jenkins CI 1.615.0.0 490 Tuesday, May 26, 2015 Approved
Jenkins CI 1.612.0.0 572 Monday, May 4, 2015 Approved
Jenkins CI 1.611.0.0 457 Monday, April 27, 2015 Approved
Jenkins CI 1.610.0.0 416 Tuesday, April 21, 2015 Approved
Jenkins CI 1.609.0.0 416 Monday, April 13, 2015 Approved
Jenkins CI 1.608.0.0 403 Monday, April 13, 2015 Approved
Jenkins CI 1.607.0.0 516 Tuesday, March 31, 2015 Approved
Jenkins CI 1.606.0.0 548 Tuesday, March 24, 2015 Approved
Jenkins CI 1.605.0.0 465 Tuesday, March 17, 2015 Approved
Jenkins CI 1.602.0.0 474 Monday, March 9, 2015 Approved
Jenkins CI 1.601.0.0 505 Wednesday, March 4, 2015 Approved
Jenkins CI 1.599.0.0 484 Wednesday, February 18, 2015 Approved
Jenkins CI 1.598.0.0 502 Monday, February 9, 2015 Approved
Jenkins CI 1.597.0.0 460 Monday, January 19, 2015 Approved
Jenkins CI 1.596.0.0 588 Monday, January 5, 2015 Approved
Jenkins CI 1.595.0.0 492 Monday, December 22, 2014 Approved
Jenkins CI 1.594.0.0 443 Friday, December 19, 2014 Approved
Jenkins CI 1.593.0.0 550 Monday, December 8, 2014 Approved
Jenkins CI 1.592.0.0 436 Friday, December 5, 2014 Approved
Jenkins CI 1.590.0.0 678 Monday, November 17, 2014 Approved
Jenkins CI 1.589.0.0 399 Wednesday, November 12, 2014 Approved
Jenkins CI 1.588.0.0 430 Thursday, November 6, 2014 Approved
Jenkins CI 1.585.0.0 456 Sunday, October 26, 2014 Approved
Jenkins CI 1.570.0.0 769 Monday, June 30, 2014 Approved
Jenkins CI 1.569.0.0 482 Tuesday, June 24, 2014 Approved
Jenkins CI 1.568.0.0 434 Wednesday, June 18, 2014 Approved
Jenkins CI 1.567.0.0 421 Wednesday, June 11, 2014 Approved
Jenkins CI 1.566.0.0 447 Friday, June 6, 2014 Approved
Jenkins CI 1.565.0.0 483 Tuesday, May 27, 2014 Approved
Jenkins CI 1.564.0.0 424 Friday, May 23, 2014 Approved
Jenkins CI 1.563.0.0 433 Tuesday, May 13, 2014 Approved
Jenkins CI 1.562.0.0 409 Tuesday, May 6, 2014 Approved
Jenkins CI 1.561.0.0 467 Wednesday, April 30, 2014 Approved
Jenkins CI 1.559.0.0 448 Tuesday, April 15, 2014 Approved
Jenkins CI 1.558.0.0 456 Monday, April 7, 2014 Approved
Jenkins CI 1.557.0.0 486 Friday, April 4, 2014 Approved
Jenkins CI 1.556.0.0 453 Friday, March 28, 2014 Approved
Jenkins CI 1.555.0.0 467 Friday, March 21, 2014 Approved
Jenkins CI 1.552.0.0 483 Friday, February 28, 2014 Approved
Jenkins CI 1.551.0.0 456 Sunday, February 16, 2014 Approved
Jenkins CI 1.550.0.0 449 Wednesday, February 12, 2014 Approved
Jenkins CI 1.549.0.0 539 Tuesday, January 28, 2014 Approved
Jenkins CI 1.548.0.0 446 Tuesday, January 21, 2014 Approved
Jenkins CI 1.543.0.0 545 Thursday, December 12, 2013 Approved
Jenkins CI 1.542.0.0 446 Wednesday, December 4, 2013 Approved
Jenkins CI 1.541.0.0 469 Tuesday, November 26, 2013 Approved
Jenkins CI 1.540.0.0 473 Tuesday, November 19, 2013 Approved
Jenkins CI 1.539.0.0 488 Friday, November 15, 2013 Approved
Jenkins CI 1.538.0.0 504 Monday, November 4, 2013 Approved
Jenkins CI 1.536.0.0 513 Tuesday, October 22, 2013 Approved
Jenkins CI 1.532.0.0 471 Thursday, September 26, 2013 Approved
Jenkins CI 1.530.0.0 510 Tuesday, September 10, 2013 Approved
Jenkins CI 1.529.0.0 516 Tuesday, August 27, 2013 Approved
Jenkins CI 1.528.0.0 475 Tuesday, August 20, 2013 Approved
Jenkins CI 1.527.0.0 434 Wednesday, August 14, 2013 Approved
Jenkins CI 1.525.0.0 473 Tuesday, July 30, 2013 Approved
Jenkins CI 1.524.0.0 483 Thursday, July 25, 2013 Approved
Jenkins CI 1.520.0.0 501 Wednesday, June 26, 2013 Approved
Jenkins CI 1.519.0.0 463 Wednesday, June 19, 2013 Approved
Jenkins CI 1.517.0.0 468 Tuesday, June 4, 2013 Approved
Jenkins CI 1.516.0.0 460 Tuesday, May 28, 2013 Approved
Jenkins CI 1.515.0.0 465 Thursday, May 23, 2013 Approved
Jenkins CI 1.514.0.0 501 Thursday, May 16, 2013 Approved
Jenkins CI 1.500.0.0 549 Friday, February 1, 2013 Approved
Jenkins CI 1.499.0.0 467 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