prima-twig 0.31.28 → 0.31.29
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/bin/twig-feature +8 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ac431733003b3d12274da6798868424afb42fee
|
|
4
|
+
data.tar.gz: e930ec7aa5091b39fc52626f0f459dfe06a1c3f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ef514164b32bdada5f62bfe4cc7e4438156acb31c0fea0827038bf2283ee74a8c7bfe4e02c6c4c096250c2578117db07fdf9a7a2cdf09cdc433a2d025dc4270
|
|
7
|
+
data.tar.gz: b1093a2baa1e921bca968d4c5d8298041aca338eb15d3bb5cb5011953842c2f54dc0f2797f99065d8bbd6edf688d5d2c600c374ceef1b204defb0e740edbc3fc
|
data/bin/twig-feature
CHANGED
|
@@ -475,12 +475,12 @@ class Release
|
|
|
475
475
|
create_prima_artifact(@projects["prima"][:revision], @projects["prima"][:name], deploy_id) unless artifact_exists?('prima-artifacts', "prima/#{@projects["prima"][:revision]}-#{deploy_id}.tar.gz")
|
|
476
476
|
create_crash_artifact(@projects['crash'][:revision], deploy_id) unless !deploy_crash? || artifact_exists?('prima-artifacts', "microservices/crash/#{@projects['crash'][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
477
477
|
create_urania_artifact(@projects["urania"][:revision]) unless artifact_exists?('prima-artifacts', "microservices/urania/#{@projects["urania"][:revision]}-qa.tar.gz")
|
|
478
|
-
create_ermes_artifact(@projects["ermes"][:revision]) unless artifact_exists?('prima-artifacts', "microservices/ermes/#{@projects["ermes"][:revision]}-qa.tar.gz")
|
|
478
|
+
create_ermes_artifact(@projects["ermes"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "microservices/ermes/#{@projects["ermes"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
479
479
|
create_bburago_artifact(@projects["bburago"][:revision]) unless artifact_exists?('prima-artifacts', "microservices/bburago/#{@projects["bburago"][:revision]}-qa.tar.gz")
|
|
480
480
|
create_hal9000_artifact(@projects["hal9000"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/hal9000/#{@projects["hal9000"][:revision]}-qa.tar.gz")
|
|
481
481
|
create_fidaty_artifact(@projects["fidaty"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "microservices/fidaty/#{@projects["fidaty"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
482
482
|
create_backoffice_artifact(@projects["backoffice"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "backoffice/#{@projects["backoffice"][:revision]}-#{deploy_id}.zip")
|
|
483
|
-
create_peano_artifact(@projects["peano"][:revision]) unless artifact_exists?('prima-artifacts', "microservices/peano/#{@projects["peano"][:revision]}-qa.tar.gz")
|
|
483
|
+
create_peano_artifact(@projects["peano"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "microservices/peano/#{@projects["peano"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
484
484
|
create_rogoreport_artifact(@projects["rogoreport"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "microservices/rogoreport/rogoreport_qa-#{@projects["rogoreport"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
485
485
|
create_assange_artifact(@projects["assange"][:revision]) unless artifact_exists?('prima-artifacts', "microservices/assange/#{@projects["assange"][:revision]}-qa.tar.gz")
|
|
486
486
|
create_borat_artifact(@projects["borat"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "microservices/borat/#{@projects["borat"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
@@ -619,7 +619,7 @@ class Release
|
|
|
619
619
|
},
|
|
620
620
|
{
|
|
621
621
|
parameter_key: "ReleaseVersion",
|
|
622
|
-
parameter_value: @projects[
|
|
622
|
+
parameter_value: "#{@projects['ermes'][:revision]}-#{deploy_id}"
|
|
623
623
|
},
|
|
624
624
|
{
|
|
625
625
|
parameter_key: "TaskDesiredCount",
|
|
@@ -787,7 +787,7 @@ class Release
|
|
|
787
787
|
},
|
|
788
788
|
{
|
|
789
789
|
parameter_key: "ReleaseVersion",
|
|
790
|
-
parameter_value: @projects[
|
|
790
|
+
parameter_value: "#{@projects['peano'][:revision]}-#{deploy_id}"
|
|
791
791
|
},
|
|
792
792
|
{
|
|
793
793
|
parameter_key: "ECSClusterName",
|
|
@@ -1278,7 +1278,7 @@ class Release
|
|
|
1278
1278
|
Dir.chdir '../../'
|
|
1279
1279
|
end
|
|
1280
1280
|
|
|
1281
|
-
def create_ermes_artifact(revision)
|
|
1281
|
+
def create_ermes_artifact(revision, deploy_id)
|
|
1282
1282
|
output "Preparo l'artifact ermes .zip\n".yellow
|
|
1283
1283
|
|
|
1284
1284
|
git_checkout_version('ermes', revision)
|
|
@@ -1305,7 +1305,7 @@ class Release
|
|
|
1305
1305
|
end
|
|
1306
1306
|
|
|
1307
1307
|
artifact_path = Dir.glob("_build/qa/rel/ermes/releases/*/ermes.tar.gz").first
|
|
1308
|
-
upload_artifact(artifact_path, "microservices/ermes/#{revision}-qa.tar.gz")
|
|
1308
|
+
upload_artifact(artifact_path, "microservices/ermes/#{revision}-#{deploy_id}-qa.tar.gz")
|
|
1309
1309
|
|
|
1310
1310
|
Dir.chdir '../../'
|
|
1311
1311
|
end
|
|
@@ -1441,7 +1441,7 @@ class Release
|
|
|
1441
1441
|
Dir.chdir '../../'
|
|
1442
1442
|
end
|
|
1443
1443
|
|
|
1444
|
-
def create_peano_artifact(revision)
|
|
1444
|
+
def create_peano_artifact(revision, deploy_id)
|
|
1445
1445
|
output "Preparo l'artifact peano .zip\n".yellow
|
|
1446
1446
|
|
|
1447
1447
|
git_checkout_version('peano', revision)
|
|
@@ -1469,7 +1469,7 @@ class Release
|
|
|
1469
1469
|
end
|
|
1470
1470
|
|
|
1471
1471
|
artifact_path = Dir.glob("_build/qa/rel/peano/releases/*/peano.tar.gz").first
|
|
1472
|
-
upload_artifact(artifact_path, "microservices/peano/#{revision}-qa.tar.gz")
|
|
1472
|
+
upload_artifact(artifact_path, "microservices/peano/#{revision}-#{deploy_id}-qa.tar.gz")
|
|
1473
1473
|
|
|
1474
1474
|
Dir.chdir '../../'
|
|
1475
1475
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: prima-twig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.
|
|
4
|
+
version: 0.31.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matteo Giachino
|
|
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
214
214
|
version: '0'
|
|
215
215
|
requirements: []
|
|
216
216
|
rubyforge_project:
|
|
217
|
-
rubygems_version: 2.6.
|
|
217
|
+
rubygems_version: 2.6.14
|
|
218
218
|
signing_key:
|
|
219
219
|
specification_version: 4
|
|
220
220
|
summary: The Prima twig toolbelt
|