cicd-builder 0.9.19 → 0.9.20
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 +8 -8
- data/lib/cicd/builder/mixlib/repo.rb +4 -1
- data/lib/cicd/builder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTFlN2NmYmZkMmUwNzA4MWI2MGNiOTk5ZTU4MTkwYTMwYjYzNGIxOA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YjZmNjgxNWIxM2FmZGMzMjBhOGY3OGViN2IzMmI4MWEyZmVkOGNhOQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MjFiM2FhZmFlZDU2MDJlYzBhY2E4ODczOWU2YjIyOGM1YTUyOTYzYjc4NWE2
|
|
10
|
+
YmVjMzcyNzE0OTFiNjJhODZlYjQ5ZTE3ZDc5MmUwNDM5NGQxYzJiZmYyMDY4
|
|
11
|
+
NzA1ZDQ0MWVjMDIxOWFhNmQ4OGQ5MTA3NWRkYzY5MTU4MjE2YTg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MmNlMjMzZTc2MzI5NmU4NzQyMTVkMzBkNjNiYjRhZDM3OGRhMDc5YTc2ZTY3
|
|
14
|
+
YWE0ZTY5NjMyMzA5ZWNhYmM3YmY5ZjhiOWQ1M2Y0Y2E4OTQ5MTlhN2NmMWMw
|
|
15
|
+
OGQyODUwZjZmNzQzMWZhYTg1OGIzZjY0YjgyYWZhNzE5NTMwYjk=
|
|
@@ -249,6 +249,9 @@ module CiCd
|
|
|
249
249
|
'build_number' => @vars[:build_num],
|
|
250
250
|
'release' => @vars[:release],
|
|
251
251
|
}
|
|
252
|
+
if @vars.has_key?(:artifacts)
|
|
253
|
+
filing['artifacts'] = @vars[:artifacts].map { |artifact| File.basename(artifact[:key]) }
|
|
254
|
+
end
|
|
252
255
|
assembly = json['container']['assembly'] or raise("Expected an 'assembly'")
|
|
253
256
|
if assembly['extension'] != !vars[:build_ext]
|
|
254
257
|
# noinspection RubyStringKeysInHashInspection
|
|
@@ -342,7 +345,7 @@ module CiCd
|
|
|
342
345
|
begin
|
|
343
346
|
if File.exists?(@vars[:build_pkg])
|
|
344
347
|
|
|
345
|
-
artifacts = []
|
|
348
|
+
artifacts = @vars[:artifacts] rescue []
|
|
346
349
|
|
|
347
350
|
key = "#{@vars[:project_name]}/#{@vars[:variant]}/#{@vars[:build_nam]}/#{@vars[:build_rel]}"
|
|
348
351
|
# Store the assembly - be sure to inherit possible overrides in pkg name and ext but dictate the drawer!
|
data/lib/cicd/builder/version.rb
CHANGED
|
@@ -4,7 +4,7 @@ module CiCd
|
|
|
4
4
|
# file = File.expand_path("#{File.dirname(__FILE__)}/../../../VERSION")
|
|
5
5
|
# lines = File.readlines(file)
|
|
6
6
|
# version = lines[0]
|
|
7
|
-
version = '0.9.
|
|
7
|
+
version = '0.9.20'
|
|
8
8
|
VERSION = version unless const_defined?('VERSION')
|
|
9
9
|
major, minor, tiny = VERSION.split('.')
|
|
10
10
|
MAJOR = major unless const_defined?('MAJOR')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cicd-builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christo De Lange
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: awesome_print
|