blob: 3dc2f4973609afb6bf9c5804669a33a6c27e2ad6 (
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
|
#!/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 tests') {
parallel {
stage("Test conjur_variable lookup plugin") {
steps {
sh './ci/test.sh -d conjur_variable'
junit 'tests/conjur_variable/junit/*'
}
}
stage("Test conjur_host_identity role") {
steps {
sh './ci/test.sh -d conjur_host_identity'
junit 'roles/conjur_host_identity/tests/junit/*'
}
}
}
}
stage('Build Release Artifacts') {
when {
anyOf {
branch 'master'
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)
}
}
}
|