summaryrefslogtreecommitdiffstats
path: root/ansible_collections/cyberark/conjur/Jenkinsfile
blob: 7710f5d213af8fbcd30e7e554b08e357e3802e2a (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env groovy

pipeline {
  agent { label 'executor-v2' }

  options {
    timestamps()
    buildDiscarder(logRotator(numToKeepStr: '30'))
  }

  triggers {
    cron(getDailyCronString())
  }

  stages {
    stage('Validate') {
      parallel {
        stage('Changelog') {
          steps { parseChangelog() }
        }
      }
    }

    stage('Run conjur_variable unit tests') {
      steps {
        sh './dev/test_unit.sh -r'
        publishHTML (target : [allowMissing: false,
          alwaysLinkToLastBuild: false,
          keepAll: true,
          reportDir: 'tests/output/reports/coverage=units/',
          reportFiles: 'index.html',
          reportName: 'Ansible Coverage Report',
          reportTitles: 'Conjur Ansible Collection report'])
      }
    }

    stage('Run integration tests with Conjur Open Source') {
      stages {
        stage('Ansible v8 (core 2.15) - latest') {
          stages {
            stage('Deploy Conjur') {
              steps {
                sh './dev/start.sh -v 8'
              }
            }
            stage('Run tests') {
              parallel {
                stage('Testing conjur_variable lookup plugin') {
                  steps {
                    sh './ci/test.sh -d -t conjur_variable'
                    junit 'tests/conjur_variable/junit/*'
                  }
                }

                stage('Testing conjur_host_identity role') {
                  steps {
                    sh './ci/test.sh -d -t conjur_host_identity'
                    junit 'roles/conjur_host_identity/tests/junit/*'
                  }
                }
              }
            }
          }
        }

        stage('Ansible v7 (core 2.14)') {
          when {
            anyOf {
              branch 'main'
              buildingTag()
            }
          }
          stages {
            stage('Deploy Conjur') {
              steps {
                sh './dev/start.sh -v 7'
              }
            }
            stage('Run tests') {
              parallel {
                stage('Testing conjur_variable lookup plugin') {
                  steps {
                    sh './ci/test.sh -d -t conjur_variable'
                    junit 'tests/conjur_variable/junit/*'
                  }
                }

                stage('Testing conjur_host_identity role') {
                  steps {
                    sh './ci/test.sh -d -t conjur_host_identity'
                    junit 'roles/conjur_host_identity/tests/junit/*'
                  }
                }
              }
            }
          }
        }

        stage('Ansible v6 (core 2.13)') {
          when {
            anyOf {
              branch 'main'
              buildingTag()
            }
          }
          stages {
            stage('Deploy Conjur') {
              steps {
                sh './dev/start.sh -v 6'
              }
            }
            stage('Run tests') {
              parallel {
                stage('Testing conjur_variable lookup plugin') {
                  steps {
                    sh './ci/test.sh -d -t conjur_variable'
                    junit 'tests/conjur_variable/junit/*'
                  }
                }

                stage('Testing conjur_host_identity role') {
                  steps {
                    sh './ci/test.sh -d -t conjur_host_identity'
                    junit 'roles/conjur_host_identity/tests/junit/*'
                  }
                }
              }
            }
          }
        }
      }
    }

    stage('Run integration tests with Conjur Enterprise') {
      stages {
        stage('Deploy Conjur Enterprise') {
          steps {
            sh './dev/start.sh -e -v 8'
          }
        }
        stage('Run tests') {
          parallel {
            stage("Testing conjur_variable lookup plugin") {
              steps {
                sh './ci/test.sh -d -t conjur_variable'
                junit 'tests/conjur_variable/junit/*'
              }
            }

            stage("Testing conjur_host_identity role") {
              steps {
                sh './ci/test.sh -d -t conjur_host_identity'
                junit 'roles/conjur_host_identity/tests/junit/*'
              }
            }
          }
        }
      }
    }

    stage('Build Release Artifacts') {
      when {
        anyOf {
            branch 'main'
            buildingTag()
        }
      }

      steps {
        sh './ci/build_release'
        archiveArtifacts 'cyberark-conjur-*.tar.gz'
      }
    }

    stage('Publish to Ansible Galaxy') {
      when {
        buildingTag()
      }

      steps {
        sh 'summon ./ci/publish_to_galaxy'
      }
    }
  }

  post {
    always {
      cleanupAndNotify(currentBuild.currentResult)
    }
  }
}