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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Jenkinsfile +0 -10
  3. data/VERSION +1 -1
  4. data/publish-rubygem.sh +4 -3
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 900a9fd06b803b1a556d3b718cb8db6ac73b442eb78b414417af39764783d214
4
- data.tar.gz: d634ed0e025e341cca3a0e085bdbd75dde1f965112dffcb2bdbf9c920209aa6b
3
+ metadata.gz: 36213d99e99506f105a0f94d228be953e3ee031f016d8f9bd2a35359214ec920
4
+ data.tar.gz: b2e3faaabfcfc24ea12883b695a19eedcb6b8e574baf4ad0132405750c9798a6
5
5
  SHA512:
6
- metadata.gz: a143de7e6c1b954d95ed224c96d477afdaa63cf4642019b7b01392b68f5e214246eb3c3a568d1dfc3d43b8d05c288f7b449dc9a8ad6500bf3ca2c45a516897e5
7
- data.tar.gz: 154e6740f311f41038631cadc7aeff5a52922b6dbf150d7058cf0bb90fd6fc4b0119ecef507cc301cf6f10621ce132254189e39582de1e2897876d81842f0d0f
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-957
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 -e VERSION
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-debify
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1.pre.957
4
+ version: 2.1.1.pre.958
5
5
  platform: ruby
6
6
  authors:
7
7
  - CyberArk Software, Inc.