This repository contains everything needed to release Jenkins core or some Jenkins components libraries.
This includes:
-
Jenkinsfiles for Releasing and Packaging.
-
Kubernetes POD templates definition for releasing and packaging environments on Linux and Windows operating systems.
-
Any configuration or utility scripts
The release process implies following Git repository:
-
jenkinsci/jenkins or any other git repository containing the Jenkins code to be released.
-
jenkinsci/packaging contains tools and configuration to package Jenkins for OS distribution [Debian, Red Hat, SUSE, MSI, WAR]
-
jenkins-infra/chart contains the Helm chart used to deploy release.ci.jenkins.io on top of Kubernetes.
-
jenkins-infra/azure contains the terraform code used to provision infrastructure needed by the release environment
Variable | Description | Release | Packaging | ||
---|---|---|---|---|---|
|
Defines git email used in git commits. |
x |
x |
||
|
Defines git name used in git commits. |
x |
x |
||
|
Defines options that can be passed to every git commands used in release scripts. |
x |
x |
||
|
Define the GPG key name that will be used to sign artifacts. |
x |
x |
||
|
Define the GPG file name that will be used to import gpg key into keyring. |
x |
x |
||
|
Define the Azure key vault containing the gpg key. |
x |
x |
||
|
Defines the Jenkins signature file name. |
x |
|||
|
Define the url used to download jenkins.war. |
x |
|||
|
Define which version of Jenkins will be downloaded for packaging. It accepts following values:
More information in getJenkinsVersion.py
|
x |
|||
|
Defines the jenkins.war file name downloaded from a maven repository using |
x |
|||
|
Defines the Jenkins git repository read by the build. It is also the repository where generated commits and new tags will be pushed. |
x |
x |
||
|
Defines the Jenkins branch used to checkout and then pushes commits related to the release. |
x |
x |
||
|
Defines the branch used as the production branch during promotion. |
x |
|||
|
Defines the git repository used as the production git repository during promotion. |
x |
|||
|
Defines the branch used as the staging git branch used to promote to the production one. |
x |
|||
|
Defines the git repository used as the staging git repository during promotion. |
x |
|||
|
Defines path where staging git repository will be be checkout. |
x |
|||
|
Defines the maven repository URL where is pushed generated artifacts. |
x |
x |
||
|
Defines the maven repository name where is pushed generated artifacts. |
x |
x |
||
|
Defines the maven repository password. |
x |
x |
||
|
Defines the maven repository username. |
x |
x |
||
|
Defines the production maven repository name used during maven promotion. |
x |
|||
|
Defines where the different packages will be published. |
x |
|||
|
Defines custom ssh options used to connect to |
x |
|||
|
Defines parameters used by Default value is set to |
x |
|||
|
Define the release line used by packaging scripts in jenkinsci/packaging. |
x |
|||
|
Define a file containing environment variables specific to a release, located in the profile.d directory. |
x |
x |
||
|
Define code signing certificate name. |
x |
x |
||
|
Define code signing certificate file name. |
x |
x |
||
|
Define signing keystore. |
x |
x |
||
|
Define code signing certificate file name. |
x |
x |
The release process is divided in two categories. The first part that we mention by using the term the release, is when we create a new java code release. It relies on the Maven Release Plugin to perform the release. It involves signing with a GPG key and a code signing certificate. At the end of this operation signed maven artifacts are pushed to a Maven repository.
The second part that we name packaging is when we retrieve from a Maven repository, the version we want to package. Then we build distribution packages, publish them, promote artifacts between staging and production environment if needed and finally we ensure that our mirrors are up to date.
In order to trigger a new release, you must fulfil following requirements:
-
✓ Jenkins VPN Access access
-
✓ Being part of LDAP group 'release-core'
-
✓ release.ci.jenkins.io access
At this stage, we are going to retrieve the Java code, release a new version using the maven release plugin and then publish artifacts on a maven repository.
It’s important to notice that we do not use the maven release plugin to checkout git repositories neither to push changes. This allow us to release from a different git repository than the one defined in the pom.xml. We also need to be able to push commits to a different repository than the one defined in the pom.xml.
-
localCheckout must be set to true
-
puchChanges must be set to false
Estimated time +- 1h30
-
Connect to the Jenkins VPN.
-
Open your favorite browser to https://release.ci.jenkins.io.
-
Trigger the release job on the master branch. Link.
-
Once triggered, it asks you which release line you want to do. It’s important to know that the release line matches one of the profiles file defined here, so please carefully review the settings and be sure that it does what you are looking for.
-
At the end of the job, git commits and maven artifacts will be pushed to their respective locations.
To validate that the release went well, excepted by having a green build, you can double-check that your artifacts have been correctly pushed to Maven repository located on $MAVEN_REPOSITORY_URL/$MAVEN_REPOSITORY_NAME/org/jenkins-ci/main/jenkins-war/
. You could also run jarsigner -verify <your generated artifact>
is correct.
The packaging process looks after the latest Jenkins version published on a Maven repository and then build and publish artifacts for Debian, Red Hat, SUSE, Windows. It also republishes the War file on the package server. If enabled, then it promotes git commits between git repository, promotes maven artifacts between maven repository.
Note
|
Packages are not re-published if they already exist, only package website is overridden so it’s safe to re-trigger the job. |
Estimated time +- 30min
-
Connect to the Jenkins VPN
-
Open your favorite browser to release.ci.jenkins.io
-
Trigger the packaging job on the master branch. Link
-
Once triggered, it asks you which release line you want to package for. The release line matches one of the profile defines in profile.d, so please carefully review those settings in order to validate that’s what you are looking for.
Once the job is done, every package will be published and then mirror synchronized.
Staging packages is not yet fully supported, more information on INFRA-1363 and INFRA-2608
The release profile is used to identify the kind of release we are going to do. They are mainly influenced by following elements:
-
Do we want to releases based on different repository branch?
-
Do we want to release based on different git repository?
At the moment we identify four release type
-
Weekly
-
Stable
-
Security
-
Lts security
Note
|
release.ci.jenkins.io has two generic jobs, one for release and a second one for packaging. One job per release type triggers the two generic jobs with different parameters. While it isn’t required to trigger a release type job, it increases visibility and reduces the risk of human error. |
The weekly release is the default release. It is scheduled every Tuesday as defined by this cron. It uses parameters defined in this file
It releases using the repository jenkinsci/jenkins from the branch master. Artifacts are pushed to the default maven repository 'Releases'.
If for some reason the release job needs to be re-triggered, you can:
-
Connect to the Jenkins VPN
-
Open your favorite browser to release.ci.jenkins.io
-
Review the weekly environment file:
-
Trigger the weekly job
Note
|
You can re-trigger individually the two downstream jobs, release and packaging.
|
A stable release-candidate is a manually triggered release that happens around once a month. It uses parameters defined in this file.
Before triggering a new stable release candidatae release, some steps are required:
-
Prepare
jenkinsci/jenkins
repository → missing documentation link. -
Create a branch on jenkins-infra/release with a branch name that match the release branch from jenkinsci/jenkins like
rc-stable-<jenkins_version>
. -
Review and update the stable environment file with:
-
RELEASE_GIT_BRANCH
set to thejenkinsci/jenkins
release branch likestable-2.235
-
PACKAGING_GIT_BRANCH
set to the appropriatejenkinsci/packaging
branch, e.g.stable-2.235
-
-
Trigger the stable job
Note
|
You can re-trigger individually the two downstream jobs, release and packaging.
|
A stable release is a manually triggered release that happens around once a month. Refer to LTS Release Line for more detailed information. It uses parameters defined in this file.
Before triggering a new stable release, some steps are required:
-
Prepare
jenkinsci/jenkins
repository → missing documentation link. -
Create a branch on jenkins-infra/release with a branch name that match the release branch from jenkinsci/jenkins like
stable-<jenkins_version>
. -
Review and update the stable environment file with:
-
RELEASE_GIT_BRANCH
set to thejenkinsci/jenkins
release branch likestable-2.235
-
JENKINS_VERSION
set to the final release version that will be packaged. If set to 'stable' then the packaging job will try to guess the version based on what was pushed to the maven repository. cfr settings. -
PACKAGING_GIT_BRANCH
set to the appropriatedjenkinsci/packaging
branch
-
-
Trigger the stable job
Note
|
You can re-trigger individually the two downstream jobs, release and packaging.
|
The security release follows the same process as the stable one except that artifacts are published in private. So we need to promote git commits from a private repository to the public one then promote maven artifacts from a private maven repository to the public one.
-
Prepare jenkinsci-cert/jenkins repository → missing documentation link
-
Create a branch on jenkins-infra/release with a branch name that match the release branch from jenkins-cert/jenkins like
security-stable-2.135
-
Review and update the security environment file with:
-
RELEASE_GIT_BRANCH
set to thejenkinsci-cert/jenkins
release branch likesecurity-stable-2.135
-
PACKAGING_GIT_BRANCH
set to the appropriated jenkinsci/packaging branch -
MAVEN_REPOSITORY_NAME
set to the maven repository name where we are going to publish staging maven artifacts. This is also the source location used by the packaging job to build distribution packages -
JENKINS_VERSION
set to the final release version that will be packaged. If set to 'stable' or 'latest' then the packaging job will try to guess the version based on what was pushed to the maven repository. cfr settings. -
RELEASELINE
set to '-stable' for a lts release otherwise leave empty
-
-
Trigger the generic Release job from the appropriated branch like
security-stable-2.235
-
Force repository scan
-
Trigger the first build to have access to job parameter and immediately abort it
-
Trigger a job with the correct parameters
-
RELEASE_PROFILE
set tosecurity
-
RELEASE_GIT_BRANCH
set tounused
as we already define it in the release profile file, which overrides the job parameter -
MAVEN_REPOSITORY_NAME
set tounused
as we already define it in the release profile file, which overrides the job parameter -
VALIDATION_ENABLED
set to true if the validation stage should run
-
-
Trigger the generic Packaging job job from the appropriate branch like
security-stable-2.235
with correct parameters-
RELEASE_PROFILE
set tosecurity
-
RELEASE_GIT_BRANCH
set tounused
same reason as before -
MAVEN_REPOSITORY_NAME
set tounused
same reason as before -
MAVEN_REPOSITORY_PRODUCTION_NAME
set tounused
-
MAVEN_STAGING_REPOSITORY_PROMOTION_ENABLED
set to true -
GIT_STAGING_REPOSITORY_PROMOTION_ENABLED
set to false as we prefer to do it manually once everything is done -
VALIDATION_ENABLED
set to true
-
-
Note
|
You can re-trigger individually the two downstream jobs, release, and packaging.
|
The Jenkins project uses a Digicert account provided by CDF to request code signing certificate. The release environment is designed to download a pkcs12 certificate from Azure key vault.
-
Get a code signing certificate from Digicert
-
Convert the code signing certificate from Digicert to a pkcs12 certificate which also includes the private key
-
Upload the pkcs12 certificate to Azure Key Vault
-
Update the release environment credentials with appropriated password
Country Name: US State: DE Organization: CDF Binary Project a Series of LF Projects, LLC Organization Unit: Jenkins Project Common Name: Jenkins
Generate a new code signing certificate private key and a certificate signing request:
openssl req -out jenkins-release.csr -new -newkey rsa:4096 -keyout jenkins-release.key
Show csr information
openssl req -text -noout -verify -in jenkins-release.csr
Show private key information
openssl rsa -in jenkins-release.key -check
Show certificate information
openssl x509 -in jenkins-release.crt -text -noout
Convert p7b to pkcs12
openssl pkcs7 -in digicert.p7b -text -print_certs -out intermediateCert.pem openssl pkcs12 -export -in intermediateCert.pem -inkey jenkins-release.key -out jenkins-release.p12
Show pkcs12 information
openssl pkcs12 -info -in jenkins.pfx
More information about Jenkins Core maintainers and the different roles can be found in MAINTAINERS.
The stage release failed and we already push commits during the maven release.
The problem here, is if we re-trigger the release job, we also update the release version again.
So if the process fails on running mvn release:stage
, then we can re-trigger it from inside the container as custom parameters are located in settings-release.xml
.
kubectl get pods -n release # Looking for the correct jenkins agent name
kubectl exec -i -t -n release -c maven <pod_name alias jenkins agent> bash
cd /home/jenkins/agent/workspace/core_release_master/release
mvn -B -DstagingRepository=releases::default::https://repo.jenkins-ci.org/releases -s settings-release.xml --no-transfer-progress -Darguments=--no-transfer-progress release:stage
-
Jenkins docker images are describe from jenkinsci/docker repository and deployed to DockerHub as jenkins/jenkins
-
pkg.jenkins.io, service to download Jenkins packages
-
repo.jenkins-ci.org, Jenkins Maven repository
-
INFRA-910 - EPIC for the new Jenkins Core Release Environment
-
docker-packaging, defines the docker image used to execute packaging scripts