Downloads:
157,062
Downloads of v 2.462.3:
821
Last Update:
02 Oct 2024
Package Maintainer(s):
Software Author(s):
- Kohsuke Kawaguchi
Tags:
jenkins server foss cross-platform ciJenkins
This is not the latest version of Jenkins available.
- 1
- 2
- 3
2.462.3 | Updated: 02 Oct 2024
Downloads:
157,062
Downloads of v 2.462.3:
821
Maintainer(s):
Software Author(s):
- Kohsuke Kawaguchi
Jenkins 2.462.3
This is not the latest version of Jenkins available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Kohsuke Kawaguchi. The inclusion of Kohsuke Kawaguchi trademark(s), if any, upon this webpage is solely to identify Kohsuke Kawaguchi goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Jenkins, run the following command from the command line or from PowerShell:
To upgrade Jenkins, run the following command from the command line or from PowerShell:
To uninstall Jenkins, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download jenkins --internalize --version=2.462.3 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade jenkins -y --source="'INTERNAL REPO URL'" --version="'2.462.3'" [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="'2.462.3'"
$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: '2.462.3'
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 '2.462.3'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jenkins
{
Name = "jenkins"
Version = "2.462.3"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jenkins':
ensure => '2.462.3',
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.
This package was approved as a trusted package on 02 Oct 2024.
This is the LTS version of Jenkins.
Jenkins is an open source automation server which enables developers around the world to reliably build, test, and deploy their software.
Features
- Continuous Integration and Continuous Delivery
As an extensible automation server, Jenkins can be used as a simple CI server or turned into the continuous delivery hub for any project. - Easy installation
Jenkins is a self-contained Java-based program, ready to run out-of-the-box, with packages for Windows, Mac OS X and other Unix-like operating systems. - Easy configuration
Jenkins can be easily set up and configured via its web interface, which includes on-the-fly error checks and built-in help. - Plugins
With hundreds of plugins in the Update Center, Jenkins integrates with practically every tool in the continuous integration and continuous delivery toolchain. - Extensible
Jenkins can be extended via its plugin architecture, providing nearly infinite possibilities for what Jenkins can do. - Distributed
Jenkins can easily distribute work across multiple machines, helping drive builds, tests and deployments across multiple platforms faster.
Package Parameters
/InstallDir
- The directory to install Jenkins to. Defaults toC:\Program Files\Jenkins
/Jenkins_Root
- The directory to store data in. Defaults toC:\ProgramData\Jenkins
/Port
- The port to access Jenkins via. Defaults to8080
./Java_Home
- The path to an installation of JRE 11, if not present in$env:JAVA_HOME
./Service_Username
- The account to run the Jenkins service as. Defaults tolocalsystem
./Service_Password
- The account password to use to authenticate.
You can pass parameters as follows:
choco install jenkins --parameters="/JAVA_HOME='C:\Program Files\InstalledJRE\' /PORT=8081"
Notes
- NOTE: You need Java JRE 11 for Jenkins to install. This has not been added as a dependency as there are so many flavours. The package used in testing was
temurin11jre
but others should work without issue. If the package cannot find aJAVA_HOME
environment variable, or find a JRE folder in Program Files, the package will fail out. - NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.
The MIT License
Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The installer has been downloaded from their official download link from <https://www.jenkins.io/download/>
1. Download the file via:
64-Bit: <http://mirrors.jenkins-ci.org/windows-stable/2.462.3/jenkins.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
checksum type: sha256
checksum64: 25F54F401F83453E20C8C7D1459032A7888DBE3D4F895531E6089EFF5C799A84
File 'LICENSE.txt' is obtained from <https://github.com/jenkinsci/jenkins/blob/master/LICENSE.txt>
if (Get-Service Jenkins -ErrorAction SilentlyContinue) {
Stop-Service Jenkins
}
# If x86 exists, that is the default installation location for the previous version of Jenkins on an x64 system
$ProgramFiles = @($env:ProgramFiles, ${env:ProgramFiles(x86)})[[bool]${env:ProgramFiles(x86)}]
function Test-JenkinsMigrationRequirement {
<#
.Synopsis
Tests to see if there is an installed version of Jenkins, and that it's <= 2.3.0
.Description
We need to test if we need to attempt to migrate from the previous installation of Jenkins.
This test should show that an old version of Jenkins is installed.
.Example
Test-JenkinsMigrationRequirement
#>
[OutputType([bool])]
[CmdletBinding()]
param(
# The registry path to find old Jenkins keys
[string]$JenkinsRegistryRoot = "HKLM:\SOFTWARE\Jenkins\InstalledProducts\Jenkins"
)
end {
-not (Test-Path $JenkinsRegistryRoot) -and
(Test-Path $ProgramFiles\Jenkins\jenkins.exe) -and
[version](Get-ItemProperty $ProgramFiles\Jenkins\jenkins.exe -ErrorAction SilentlyContinue).VersionInfo.ProductVersion -le "2.3.0"
}
}
function Merge-JenkinsMigrationData {
<#
.Synopsis
Migrates jobs, users, plugins, etc, from a 2.3.0 install of Jenkins to a newer version
.Description
The Windows installation of Jenkins significantly changed after 2.3.0. Consequently, user data needs to be
migrated to the new storage location. This function attempts to do this.
.Example
Merge-JenkinsMigrationData
#>
[OutputType([null])]
[CmdletBinding()]
param(
# The old data directory
$PreviousDataDirectory = $(Convert-Path "$ProgramFiles\Jenkins\"),
# The new data directory
$NewDataDirectory = $(cmd /c "echo $(([xml](Get-Content $env:ProgramFiles\Jenkins\jenkins.xml)).service.env.value)")
)
end {
# Installing the new MSI should have uninstalled the application data for Jenkins 2.3.0 without removing user data
Write-Warning "Migrating Jenkins 2.3.0 Data from '$($PreviousDataDirectory)' to '$($NewDataDirectory)' (Copy Only)"
Stop-Service -Name Jenkins -Force
if (-not (Test-Path $NewDataDirectory)) {
$null = New-Item -Path $NewDataDirectory -ItemType Directory -Force
}
foreach ($Item in @(
"jobs"
"nodes"
"plugins"
"secrets"
"userContent"
"users"
"identity.key.enc"
"secret.key"
"secret.key.not-so-secret"
"credentials.xml"
"jenkins.install.InstallUtil.installingPlugins"
"jenkins.install.InstallUtil.lastExecVersion"
"jenkins.install.UpgradeWizard.state"
"jenkins.model.JenkinsLocationConfiguration"
)) {
Remove-Item -Path (Join-Path $NewDataDirectory $Item) -Recurse -ErrorAction SilentlyContinue
Copy-Item -Path (Join-Path $PreviousDataDirectory $Item) -Destination $NewDataDirectory -Recurse -ErrorAction SilentlyContinue
}
if (-not (Test-Path $PreviousDataDirectory\secrets\initialAdminPassword) -and (Test-Path $NewDataDirectory\secrets\initialAdminPassword)) {
Rename-Item $NewDataDirectory\secrets\initialAdminPassword -NewName "initialAdminPassword.backup"
}
}
}
md5: D239B432C81E790A86EAA61F423D60F5 | sha1: B943C344A81E06DD5996C4A64636070C95423085 | sha256: 25F54F401F83453E20C8C7D1459032A7888DBE3D4F895531E6089EFF5C799A84 | sha512: 674809A92889C49133856A9931D81166229E1A762BEE970CFE082EB6A220C2259DDE0E400E5DAE6945D5243251D816980C9705C55A578EC1B896039908DE00B6
Log in or click on link to see number of positives.
- jenkins.2.462.3.nupkg (85eec762667c) - ## / 49
- jenkins.msi (25f54f401f83) - ## / 41
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.479.1 | 1524 | Wednesday, October 30, 2024 | Approved | |
Jenkins 2.462.3 | 821 | Wednesday, October 2, 2024 | Approved | |
Jenkins 2.462.2 | 854 | Wednesday, September 4, 2024 | Approved | |
Jenkins 2.462.1 | 748 | Wednesday, August 7, 2024 | Approved | |
Jenkins 2.452.3 | 618 | Wednesday, July 10, 2024 | Approved | |
Jenkins 2.452.2 | 706 | Wednesday, June 12, 2024 | Approved | |
Jenkins 2.452.1 | 598 | Wednesday, May 15, 2024 | Approved | |
Jenkins 2.440.3 | 763 | Wednesday, April 17, 2024 | Approved | |
Jenkins 2.440.2 | 1473 | Wednesday, March 20, 2024 | Approved | |
Jenkins 2.440.1 | 2022 | Wednesday, February 21, 2024 | Approved | |
Jenkins 2.426.3 | 2026 | Wednesday, January 24, 2024 | Approved | |
Jenkins 2.426.2 | 1089 | Wednesday, December 13, 2023 | Approved | |
Jenkins 2.426.1 | 971 | Wednesday, November 15, 2023 | Approved | |
Jenkins 2.414.3 | 1598 | Wednesday, October 18, 2023 | Approved | |
Jenkins 2.414.2 | 1647 | Wednesday, September 20, 2023 | Approved | |
Jenkins 2.414.1 | 1114 | Wednesday, August 23, 2023 | Approved | |
Jenkins CI 2.401.3 | 969 | Wednesday, July 26, 2023 | Approved | |
Jenkins CI 2.401.2 | 976 | Wednesday, June 28, 2023 | Approved | |
Jenkins CI 2.401.1 | 1053 | Monday, June 5, 2023 | Approved | |
Jenkins CI 2.387.2 | 4484 | Wednesday, April 5, 2023 | Approved | |
Jenkins CI 2.387.1 | 1665 | Friday, March 17, 2023 | Approved | |
Jenkins CI 2.222.4 | 32931 | Thursday, May 28, 2020 | Approved | |
Jenkins CI 2.222.3 | 1488 | Saturday, April 25, 2020 | Approved | |
Jenkins CI 2.222.1 | 1783 | Wednesday, March 25, 2020 | Approved | |
Jenkins CI 2.204.5 | 848 | Sunday, March 8, 2020 | Approved | |
Jenkins CI 2.204.4 | 405 | Wednesday, March 4, 2020 | Approved | |
Jenkins CI 2.204.3 | 373 | Saturday, February 29, 2020 | Approved | |
Jenkins CI 2.204.2 | 992 | Wednesday, January 29, 2020 | Approved | |
Jenkins CI 2.204.1 | 1065 | Thursday, December 19, 2019 | Approved | |
Jenkins CI 2.190.3 | 1027 | Thursday, November 21, 2019 | Approved | |
Jenkins CI 2.190.2 | 1230 | Tuesday, October 29, 2019 | Approved | |
Jenkins CI 2.190.1 | 1380 | Wednesday, September 25, 2019 | Approved | |
Jenkins CI 2.176.3 | 1234 | Wednesday, August 28, 2019 | Approved | |
Jenkins CI 2.176.2 | 1340 | Wednesday, July 17, 2019 | Approved | |
Jenkins CI 2.176.1 | 1029 | Monday, June 10, 2019 | Approved | |
Jenkins CI 2.164.3 | 894 | Friday, May 10, 2019 | Approved | |
Jenkins CI 2.164.2 | 1029 | Wednesday, April 10, 2019 | Approved | |
Jenkins CI 2.164.1 | 1160 | Thursday, March 14, 2019 | Approved | |
Jenkins CI 2.150.3 | 4924 | Monday, February 18, 2019 | Approved | |
Jenkins CI 2.150.2 | 1343 | Wednesday, January 16, 2019 | Approved | |
Jenkins CI 2.150.1 | 956 | Wednesday, December 5, 2018 | Approved | |
Jenkins CI 2.138.3 | 680 | Friday, November 9, 2018 | Approved | |
Jenkins CI 2.138.2 | 724 | Friday, October 12, 2018 | Approved | |
Jenkins CI 2.138.1 | 361 | Wednesday, November 14, 2018 | Approved | |
Jenkins CI 2.89.2 | 6410 | Friday, December 15, 2017 | Approved | |
Jenkins CI 2.89.1 | 866 | Friday, December 8, 2017 | Approved | |
Jenkins CI 2.73.3 | 816 | Tuesday, December 5, 2017 | Approved | |
Jenkins CI 2.60.3 | 1964 | Wednesday, September 13, 2017 | Approved | |
Jenkins CI 2.46.3 | 2466 | Friday, May 26, 2017 | Approved | |
Jenkins CI 2.46.1 | 1275 | Saturday, April 8, 2017 | Approved | |
Jenkins CI 2.32.3 | 2356 | Friday, March 10, 2017 | Approved | |
Jenkins CI 2.32.2 | 1144 | Friday, February 3, 2017 | Approved | |
Jenkins CI 2.32.1 | 1027 | Friday, January 6, 2017 | Approved | |
Jenkins CI 2.19.4 | 1441 | Friday, December 2, 2016 | Approved | |
Jenkins CI 2.19.3 | 569 | Monday, November 21, 2016 | Approved | |
Jenkins CI 2.19.2 | 525 | Monday, November 14, 2016 | Approved | |
Jenkins CI 2.16.0.0 | 3657 | Tuesday, August 2, 2016 | Approved | |
Jenkins CI 2.0.0.0 | 600 | Thursday, April 21, 2016 | Approved | |
Jenkins CI 1.654.0.0 | 960 | Tuesday, March 22, 2016 | Approved | |
Jenkins CI 1.652.0.0 | 489 | Tuesday, March 8, 2016 | Approved | |
Jenkins CI 1.650.0.0 | 419 | Thursday, February 25, 2016 | Approved | |
Jenkins CI 1.649.0.0 | 422 | Monday, February 22, 2016 | Approved | |
Jenkins CI 1.648.0.0 | 429 | Thursday, February 18, 2016 | Approved | |
Jenkins CI 1.647.0.0 | 472 | Thursday, February 4, 2016 | Approved | |
Jenkins CI 1.646.0.0 | 418 | Wednesday, January 27, 2016 | Approved | |
Jenkins CI 1.645.0.0 | 513 | Wednesday, January 20, 2016 | Approved | |
Jenkins CI 1.644.0.0 | 492 | Monday, January 11, 2016 | Approved | |
Jenkins CI 1.643.0.0 | 583 | Monday, January 4, 2016 | Approved | |
Jenkins CI 1.641.0.0 | 552 | Thursday, December 10, 2015 | Approved | |
Jenkins CI 1.640.0.0 | 501 | Monday, December 7, 2015 | Approved | |
Jenkins CI 1.639.0.0 | 468 | Monday, November 30, 2015 | Approved | |
Jenkins CI 1.638.0.0 | 482 | Tuesday, November 24, 2015 | Approved | |
Jenkins CI 1.632.0.0 | 770 | Thursday, October 8, 2015 | Approved | |
Jenkins CI 1.629.0.0 | 664 | Tuesday, September 15, 2015 | Approved | |
Jenkins CI 1.628.0.0 | 435 | Tuesday, September 8, 2015 | Approved | |
Jenkins CI 1.627.0.0 | 475 | Monday, August 31, 2015 | Approved | |
Jenkins CI 1.626.0.0 | 452 | Monday, August 24, 2015 | Approved | |
Jenkins CI 1.624.0.0 | 549 | Monday, August 10, 2015 | Approved | |
Jenkins CI 1.623.0.0 | 441 | Monday, August 3, 2015 | Approved | |
Jenkins CI 1.620.0.0 | 445 | Wednesday, July 15, 2015 | Approved | |
Jenkins CI 1.619.0.0 | 429 | Thursday, July 9, 2015 | Approved | |
Jenkins CI 1.618.0.0 | 448 | Monday, June 29, 2015 | Approved | |
Jenkins CI 1.617.0.0 | 512 | Monday, June 8, 2015 | Approved | |
Jenkins CI 1.615.0.0 | 493 | Tuesday, May 26, 2015 | Approved | |
Jenkins CI 1.612.0.0 | 579 | Monday, May 4, 2015 | Approved | |
Jenkins CI 1.611.0.0 | 463 | Monday, April 27, 2015 | Approved | |
Jenkins CI 1.610.0.0 | 423 | Tuesday, April 21, 2015 | Approved | |
Jenkins CI 1.609.0.0 | 421 | Monday, April 13, 2015 | Approved | |
Jenkins CI 1.608.0.0 | 409 | Monday, April 13, 2015 | Approved | |
Jenkins CI 1.607.0.0 | 520 | Tuesday, March 31, 2015 | Approved | |
Jenkins CI 1.606.0.0 | 551 | Tuesday, March 24, 2015 | Approved | |
Jenkins CI 1.605.0.0 | 468 | Tuesday, March 17, 2015 | Approved | |
Jenkins CI 1.602.0.0 | 480 | Monday, March 9, 2015 | Approved | |
Jenkins CI 1.601.0.0 | 509 | Wednesday, March 4, 2015 | Approved | |
Jenkins CI 1.599.0.0 | 488 | Wednesday, February 18, 2015 | Approved | |
Jenkins CI 1.598.0.0 | 507 | Monday, February 9, 2015 | Approved | |
Jenkins CI 1.597.0.0 | 464 | Monday, January 19, 2015 | Approved | |
Jenkins CI 1.596.0.0 | 592 | Monday, January 5, 2015 | Approved | |
Jenkins CI 1.595.0.0 | 497 | Monday, December 22, 2014 | Approved | |
Jenkins CI 1.594.0.0 | 447 | Friday, December 19, 2014 | Approved | |
Jenkins CI 1.593.0.0 | 554 | Monday, December 8, 2014 | Approved | |
Jenkins CI 1.592.0.0 | 442 | Friday, December 5, 2014 | Approved | |
Jenkins CI 1.590.0.0 | 684 | Monday, November 17, 2014 | Approved | |
Jenkins CI 1.589.0.0 | 403 | Wednesday, November 12, 2014 | Approved | |
Jenkins CI 1.588.0.0 | 435 | Thursday, November 6, 2014 | Approved | |
Jenkins CI 1.585.0.0 | 460 | Sunday, October 26, 2014 | Approved | |
Jenkins CI 1.570.0.0 | 772 | Monday, June 30, 2014 | Approved | |
Jenkins CI 1.569.0.0 | 488 | Tuesday, June 24, 2014 | Approved | |
Jenkins CI 1.568.0.0 | 437 | Wednesday, June 18, 2014 | Approved | |
Jenkins CI 1.567.0.0 | 431 | Wednesday, June 11, 2014 | Approved | |
Jenkins CI 1.566.0.0 | 453 | Friday, June 6, 2014 | Approved | |
Jenkins CI 1.565.0.0 | 488 | Tuesday, May 27, 2014 | Approved | |
Jenkins CI 1.564.0.0 | 429 | Friday, May 23, 2014 | Approved | |
Jenkins CI 1.563.0.0 | 437 | Tuesday, May 13, 2014 | Approved | |
Jenkins CI 1.562.0.0 | 420 | Tuesday, May 6, 2014 | Approved | |
Jenkins CI 1.561.0.0 | 471 | Wednesday, April 30, 2014 | Approved | |
Jenkins CI 1.559.0.0 | 453 | Tuesday, April 15, 2014 | Approved | |
Jenkins CI 1.558.0.0 | 461 | Monday, April 7, 2014 | Approved | |
Jenkins CI 1.557.0.0 | 492 | Friday, April 4, 2014 | Approved | |
Jenkins CI 1.556.0.0 | 459 | Friday, March 28, 2014 | Approved | |
Jenkins CI 1.555.0.0 | 471 | Friday, March 21, 2014 | Approved | |
Jenkins CI 1.552.0.0 | 490 | Friday, February 28, 2014 | Approved | |
Jenkins CI 1.551.0.0 | 460 | Sunday, February 16, 2014 | Approved | |
Jenkins CI 1.550.0.0 | 452 | Wednesday, February 12, 2014 | Approved | |
Jenkins CI 1.549.0.0 | 543 | Tuesday, January 28, 2014 | Approved | |
Jenkins CI 1.548.0.0 | 449 | Tuesday, January 21, 2014 | Approved | |
Jenkins CI 1.543.0.0 | 548 | Thursday, December 12, 2013 | Approved | |
Jenkins CI 1.542.0.0 | 452 | Wednesday, December 4, 2013 | Approved | |
Jenkins CI 1.541.0.0 | 473 | Tuesday, November 26, 2013 | Approved | |
Jenkins CI 1.540.0.0 | 477 | Tuesday, November 19, 2013 | Approved | |
Jenkins CI 1.539.0.0 | 501 | Friday, November 15, 2013 | Approved | |
Jenkins CI 1.538.0.0 | 508 | Monday, November 4, 2013 | Approved | |
Jenkins CI 1.536.0.0 | 521 | Tuesday, October 22, 2013 | Approved | |
Jenkins CI 1.532.0.0 | 476 | Thursday, September 26, 2013 | Approved | |
Jenkins CI 1.530.0.0 | 515 | Tuesday, September 10, 2013 | Approved | |
Jenkins CI 1.529.0.0 | 520 | Tuesday, August 27, 2013 | Approved | |
Jenkins CI 1.528.0.0 | 481 | Tuesday, August 20, 2013 | Approved | |
Jenkins CI 1.527.0.0 | 439 | Wednesday, August 14, 2013 | Approved | |
Jenkins CI 1.525.0.0 | 480 | Tuesday, July 30, 2013 | Approved | |
Jenkins CI 1.524.0.0 | 489 | Thursday, July 25, 2013 | Approved | |
Jenkins CI 1.520.0.0 | 504 | Wednesday, June 26, 2013 | Approved | |
Jenkins CI 1.519.0.0 | 468 | Wednesday, June 19, 2013 | Approved | |
Jenkins CI 1.517.0.0 | 471 | Tuesday, June 4, 2013 | Approved | |
Jenkins CI 1.516.0.0 | 466 | Tuesday, May 28, 2013 | Approved | |
Jenkins CI 1.515.0.0 | 468 | Thursday, May 23, 2013 | Approved | |
Jenkins CI 1.514.0.0 | 506 | Thursday, May 16, 2013 | Approved | |
Jenkins CI 1.500.0.0 | 556 | Friday, February 1, 2013 | Approved | |
Jenkins CI 1.499.0.0 | 473 | Sunday, January 20, 2013 | Approved |
Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributors
This package has no dependencies.
Ground Rules:
- This discussion is only about Jenkins and the Jenkins 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, 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.