June 2020
Intermediate to advanced
432 pages
11h 57m
English
Jenkins is another tool used to run build pipelines. Complex builds can be run using Jenkins pipelines, which get their work from a Jenkinsfile. A Jenkinsfile is written in a Jenkins-specific notation, as in the following code:
pipeline { agent any stages { stage(‘build’) { agent any steps { dotnet build **/*.csproj } } stage('test') { agent any steps { dotnet test **/*.csproj } } }}
Jenkins has limited support for visually creating and editing a pipeline. This is referred to as a freestyle project.
Read now
Unlock full access