conjur-debify 2.1.1.pre.957 → 2.1.1.pre.958
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 +0 -10
- data/VERSION +1 -1
- data/publish-rubygem.sh +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36213d99e99506f105a0f94d228be953e3ee031f016d8f9bd2a35359214ec920
|
|
4
|
+
data.tar.gz: b2e3faaabfcfc24ea12883b695a19eedcb6b8e574baf4ad0132405750c9798a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d6685737892141b344161f687cba5649aec64fa7eeaceb66f607ff7567953bb2c67c138ef24ee1305d64a012a6167f44697725c8abd992b7525bfa0b396d7e0
|
|
7
|
+
data.tar.gz: '08ef0797c127580b099daf0911301e0146070705bb778799445351346c673b3ae95e4e05a4be69c7e7894d288032d0b6bc9f8bfaea7b594bf9e57542a8ff0af8'
|
data/Jenkinsfile
CHANGED
|
@@ -19,7 +19,6 @@ pipeline {
|
|
|
19
19
|
options {
|
|
20
20
|
timestamps()
|
|
21
21
|
buildDiscarder(logRotator(daysToKeepStr: '30'))
|
|
22
|
-
skipDefaultCheckout()
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
triggers {
|
|
@@ -46,15 +45,6 @@ pipeline {
|
|
|
46
45
|
}
|
|
47
46
|
stage('Prepare') {
|
|
48
47
|
steps {
|
|
49
|
-
// One of our cukes tests to see if debify can correctly
|
|
50
|
-
// determine the version for the package being created, based
|
|
51
|
-
// on the tags in the repo. By default, the Git SCM plugin
|
|
52
|
-
// doesn't pull tags, causing the cuke to fail.
|
|
53
|
-
//
|
|
54
|
-
// I couldn't find any way to configure the plugin, so I used
|
|
55
|
-
// the Snippet Generator to create this:
|
|
56
|
-
checkout([$class: 'GitSCM', branches: [[name: env.BRANCH_NAME]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'conjur-jenkins', url: 'git@github.com:conjurinc/debify.git']]])
|
|
57
|
-
|
|
58
48
|
// Initialize VERSION file
|
|
59
49
|
updateVersion("CHANGELOG.md", "${BUILD_NUMBER}")
|
|
60
50
|
}
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.1.1-
|
|
1
|
+
2.1.1-958
|
data/publish-rubygem.sh
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
docker pull registry.tld/conjurinc/publish-rubygem
|
|
4
4
|
|
|
5
|
-
docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd
|
|
5
|
+
docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd \
|
|
6
|
+
-e VERSION \
|
|
7
|
+
-e bom-assets/ \
|
|
8
|
+
-e release-assets/
|
|
6
9
|
|
|
7
10
|
summon --yaml "RUBYGEMS_API_KEY: !var rubygems/api-key" \
|
|
8
11
|
docker run --rm --env-file @SUMMONENVFILE -v "$(pwd)":/opt/src \
|
|
9
12
|
registry.tld/conjurinc/publish-rubygem debify
|
|
10
|
-
|
|
11
|
-
docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd
|