blob: 01242da42e5b1a0e70b88ad211e9788428b2b9b6 (
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
|
#!/usr/bin/env groovy
pipeline {
agent { label 'executor-v2' }
options {
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30'))
}
stages {
stage('Validate') {
parallel {
stage('Changelog') {
steps { sh './ci/parse-changelog.sh' }
}
}
}
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 v6 - latest') {
parallel {
stage('Testing conjur_variable lookup plugin') {
steps {
sh './ci/test.sh -d conjur_variable'
junit 'tests/conjur_variable/junit/*'
}
}
stage('Testing conjur_host_identity role') {
steps {
sh './ci/test.sh -d conjur_host_identity'
junit 'roles/conjur_host_identity/tests/junit/*'
}
}
}
}
stage('Ansible v5') {
when {
anyOf {
branch 'main'
buildingTag()
}
}
parallel {
stage('Testing conjur_variable lookup plugin') {
steps {
sh './ci/test.sh -v 5 -d conjur_variable'
junit 'tests/conjur_variable/junit/*'
}
}
stage('Testing conjur_host_identity role') {
steps {
sh './ci/test.sh -v 5 -d conjur_host_identity'
junit 'roles/conjur_host_identity/tests/junit/*'
}
}
}
}
}
}
stage('Run integration tests with Conjur Enterprise') {
stages {
stage("Testing conjur_variable lookup plugin") {
steps {
sh './ci/test.sh -e -d conjur_variable'
junit 'tests/conjur_variable/junit/*'
}
}
stage("Testing conjur_host_identity role") {
steps {
sh './ci/test.sh -e -d 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)
}
}
}
|