Difference between revisions of "Continuous Integration: Releases Jenkins Pipeline"
Manuele.simi (Talk | contribs) |
Manuele.simi (Talk | contribs) (→Jenkins Pipeline Configuration) |
||
Line 110: | Line 110: | ||
Each gCube release requires a configuration file (called ''release file'') written in the YAML format. | Each gCube release requires a configuration file (called ''release file'') written in the YAML format. | ||
− | The file must be placed in the ''/release'' folder of the Git repository and named as ''gcube-<version>.yaml (e.g. gcube-4.14.5.yaml). The file must report the gcube release version and the list of components to release grouped in logical sets. | + | The file must be placed in the ''/release'' folder of the [https://wiki.gcube-system.org/gcube/Continuous_Integration:_Releases_Jenkins_Pipeline#Git_Repository Git repository] and named as ''gcube-<version>.yaml (e.g. gcube-4.14.5.yaml). The file must report the gcube release version and the list of components to release grouped in logical sets. |
This is a sample release configuration with 3 groups (SmartGear, Enabling, Data): | This is a sample release configuration with 3 groups (SmartGear, Enabling, Data): |
Revision as of 03:17, 4 September 2019
Jenkins Pipeline is a combination of plugins that support the integration and implementation of continuous delivery pipelines using Jenkins. A pipeline has an extensible automation server for creating simple or complex delivery pipelines "as code," via pipeline DSL (Domain-specific Language).
Contents
gCubeRelease Pipeline Project
In gCube we use a Pipeline to trigger the builds of jobs forming a gCube Release. The pipeline project is available at: https://jenkins.d4science.org/job/gCube-Release/
Parameters
Triggers
No triggers are defined because the pipeline is expected to be manually launched by the Release Manager:
It can be changed according to the release needs and the availability of a sufficient number of dedicate agents in Jenkins.
Git
The pipeline definition is maintained in a Git repository. This section connects the project to the Git repository.
Jenkins Pipeline Definition
Git Repository
The definition of the gCube release pipeline is maintained in this Git Repository: https://code-repo.d4science.org/gCubeCI/gCubeRelease
Requirements
- Jenkins ver. 2.164.2 or newer
- Pipeline Plugin
- Pipeline: Basic Steps
- Pipeline: Maven
- Kubernetes Plugin (for the YAML parser)
- Jenkins configured with a JDK named 'OpenJDK 8'
- One or more Jenkins agents labeled as 'pipeline-agent'
Basic Structure
Jenkinsfile defines a Declarative Pipeline. The Pipeline’s code defines the entire build process of a gCube Release.
This is the stub of the gCubeRelease pipeline.
// manage options and settings // pipeline pipeline { // run only on agents with the label agent { label 'pipeline-agent' } // expected input parameters parameters { string(name: 'myInput', description: 'Some pipeline parameters') } stages { stage('preliminary steps') { //prepare the environment for the builds steps { //execute steps here if needed } } stage('build group 1') { steps { withMaven(..maven settings here..) { build 'job name 1' build 'job name 2' build 'job name 3' build 'job name 4' } echo 'Done with group 1' } } stage('build group 2') { steps { ... } } } // post-build actions post { always { echo 'This will always run' } success { echo 'This will run only if successful' } failure { echo 'This will run only if failed' } unstable { echo 'This will run only if the run was marked as unstable' } changed { echo 'This will run only if the state of the Pipeline has changed' echo 'For example, if the Pipeline was previously failing but is now successful' } } }
Reference Documentation
Jenkins Pipeline Configuration
Each gCube release requires a configuration file (called release file) written in the YAML format.
The file must be placed in the /release folder of the Git repository and named as gcube-<version>.yaml (e.g. gcube-4.14.5.yaml). The file must report the gcube release version and the list of components to release grouped in logical sets.
This is a sample release configuration with 3 groups (SmartGear, Enabling, Data):
gCube_release: Version: 4.14.5 Components: SmartGear: - maven-parent - gcube-bom - maven-smartgears-bom - authorization-client - gxRest Enabling: - information-system-bom - information-system-model - resource-registry-api - resource-registry-client Data: - NONE
Back to the CI guide.