Contents

Pipeline Syntax

ci/cd

continuous integration and continuous delivery

  1. continuous integration

    1. test
    2. build
  2. continuous delivery

    1. deploy

jenkins

build way

  1. freestyle

    1. scm 2. build trigger
  2. pipeline a set of sh steps

pipeline declarative

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

agent any

environment  {
    Hello =
}

stage1 {

    steps (
        sh "cd ~/"
        sh '''
        mkdir  abc
        mv abc cde
        '''
    )
}


stage2{

}


#finish hook
post {
    always {
    
    }
    success {

    }
    failure {
        
    }

}

pipeline script

provide more flexible and expressive control over the pipeline

1
2
3
4
5
6
7
8
9
node {
    stage('Exam`ple') {
        if (env.BRANCH_NAME == 'master') {
            echo 'I only execute on the master branch'
        } else {
            echo 'I execute elsewhere'
        }
    }
}

blue ocean

develop the user experience for pipeline, but still compatiable with free style jobs