conjur-api 6.0.0.pre.94 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Jenkinsfile +17 -17
- data/VERSION +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9abe53aac5d77960b35ee9f111cf86250adc0286b4411672184e1ebee57ddff
|
|
4
|
+
data.tar.gz: e10e88374f348076d1e7064ab53c066462d25e2f4f981a5f610881bbb53eda05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3307984dfc0e5f7cafccd2ea76462e6c3f50acad8a4a77ec44bfe9d228d8e3c4bad822db33fa2744cf13402147d528b8109787af844c9c880899fd77b0c21b14
|
|
7
|
+
data.tar.gz: e6da130a448c56bda7316b064e673c50e5d15227d843d473602c4de9f07c0c340e52946bdc08da2d908a84d433b74e00d3ef72a8e73fd38943287787d229d447
|
data/Jenkinsfile
CHANGED
|
@@ -8,8 +8,8 @@ properties([
|
|
|
8
8
|
])
|
|
9
9
|
|
|
10
10
|
if (params.MODE == "PROMOTE") {
|
|
11
|
-
release.promote(params.VERSION_TO_PROMOTE) { sourceVersion, targetVersion, assetDirectory ->
|
|
12
|
-
|
|
11
|
+
release.promote(params.VERSION_TO_PROMOTE) { infrapool, sourceVersion, targetVersion, assetDirectory ->
|
|
12
|
+
infrapool.agentSh './publish.sh'
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
// Copy Github Enterprise release to Github
|
|
@@ -51,22 +51,22 @@ pipeline {
|
|
|
51
51
|
stage('Get InfraPool Agent') {
|
|
52
52
|
steps {
|
|
53
53
|
script {
|
|
54
|
-
|
|
54
|
+
infrapool = getInfraPoolAgent.connected(type: "ExecutorV2", quantity: 1, duration: 1)[0]
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
stage('Validate Changelog and set version') {
|
|
60
60
|
steps {
|
|
61
|
-
parseChangelog(
|
|
62
|
-
updateVersion(
|
|
61
|
+
parseChangelog(infrapool)
|
|
62
|
+
updateVersion(infrapool, "CHANGELOG.md", "${BUILD_NUMBER}")
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
stage('Prepare CC Report Dir'){
|
|
67
67
|
steps {
|
|
68
68
|
script {
|
|
69
|
-
|
|
69
|
+
infrapool.agentSh 'mkdir -p coverage'
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -77,8 +77,8 @@ pipeline {
|
|
|
77
77
|
}
|
|
78
78
|
steps {
|
|
79
79
|
script {
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
infrapool.agentSh "./test.sh"
|
|
81
|
+
infrapool.agentStash name: 'reports3.0', includes: '**/reports/*.xml'
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
post {
|
|
@@ -94,8 +94,8 @@ pipeline {
|
|
|
94
94
|
}
|
|
95
95
|
steps {
|
|
96
96
|
script {
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
infrapool.agentSh "./test.sh"
|
|
98
|
+
infrapool.agentStash name: 'reports3.1', includes: '**/reports/*.xml'
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
post {
|
|
@@ -111,8 +111,8 @@ pipeline {
|
|
|
111
111
|
}
|
|
112
112
|
steps {
|
|
113
113
|
script {
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
infrapool.agentSh "./test.sh"
|
|
115
|
+
infrapool.agentStash name: 'reports3.2', includes: '**/reports/*.xml'
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
post {
|
|
@@ -125,7 +125,7 @@ pipeline {
|
|
|
125
125
|
stage('Submit Coverage Report'){
|
|
126
126
|
steps{
|
|
127
127
|
script {
|
|
128
|
-
|
|
128
|
+
infrapool.agentStash name: 'coverage', includes: '**/coverage/**'
|
|
129
129
|
}
|
|
130
130
|
unstash 'coverage'
|
|
131
131
|
|
|
@@ -166,16 +166,16 @@ pipeline {
|
|
|
166
166
|
|
|
167
167
|
steps {
|
|
168
168
|
script {
|
|
169
|
-
release(
|
|
169
|
+
release(infrapool) {
|
|
170
170
|
// Clean up all but the calculated VERSION
|
|
171
|
-
|
|
171
|
+
infrapool.agentSh '''docker run -i --rm -v $(pwd):/src -w /src --entrypoint /bin/sh alpine/git \
|
|
172
172
|
-c "git config --global --add safe.directory /src && \
|
|
173
173
|
git clean -fdx \
|
|
174
174
|
-e VERSION \
|
|
175
175
|
-e bom-assets/ \
|
|
176
176
|
-e release-assets" '''
|
|
177
|
-
|
|
178
|
-
|
|
177
|
+
infrapool.agentSh './publish.sh'
|
|
178
|
+
infrapool.agentSh 'cp conjur-api-*.gem release-assets/.'
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
181
|
}
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.0.0
|
|
1
|
+
6.0.0
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conjur-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.0
|
|
4
|
+
version: 6.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- CyberArk Maintainers
|
|
@@ -419,9 +419,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
419
419
|
version: '1.9'
|
|
420
420
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
421
421
|
requirements:
|
|
422
|
-
- - "
|
|
422
|
+
- - ">="
|
|
423
423
|
- !ruby/object:Gem::Version
|
|
424
|
-
version:
|
|
424
|
+
version: '0'
|
|
425
425
|
requirements: []
|
|
426
426
|
rubygems_version: 3.4.10
|
|
427
427
|
signing_key:
|