prima-twig 0.49.28 → 0.49.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 +7 -19
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8dbf9eea37369e540c29c27bb8bdc5075ccfa7a76a0ad19d0a1609793be3051
|
|
4
|
+
data.tar.gz: '08006c977ee1453a7789a205ad73efb46cc8d4d6ba9a358b1b3ca969abdb8acd'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7803306bd66ea6aaa33e1764a84bcf56ea5295ba0240211f568fb2f9b05d38aac5e92370156a1e61e9a3b95712f7d6d19e27f047b2e5704f14dfb99f463cbcd
|
|
7
|
+
data.tar.gz: f1541f326b793a363556535d597ebfe54d6e17d9a62a6d1584abce85746695ea9fb79f85687350f1225f0150fbe847ddc8da2ecbb7804cd87d8cb7b4759b3060
|
data/bin/twig-feature
CHANGED
|
@@ -955,7 +955,7 @@ class Release
|
|
|
955
955
|
create_rachele_artifact(@projects["rachele"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/rachele/#{@projects["rachele"][:revision]}-qa.tar.gz")
|
|
956
956
|
create_fidaty_artifact(@projects["fidaty"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/fidaty/#{@projects["fidaty"][:revision]}-qa.tar.gz")
|
|
957
957
|
create_peano_artifact(@projects["peano"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/peano/#{@projects["peano"][:revision]}-qa.tar.gz")
|
|
958
|
-
create_rogoreport_artifact(@projects["rogoreport"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/rogoreport/
|
|
958
|
+
create_rogoreport_artifact(@projects["rogoreport"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/rogoreport/rogoreport-#{@projects["rogoreport"][:revision]}-qa.tar.gz")
|
|
959
959
|
create_assange_artifact(@projects["assange"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/assange/#{@projects["assange"][:revision]}-qa.tar.gz")
|
|
960
960
|
create_borat_artifact(@projects["borat"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/borat/#{@projects["borat"][:revision]}-qa.tar.gz")
|
|
961
961
|
create_activia_artifact(@projects["activia"][:revision]) unless artifact_exists?('prima-artifacts-encrypted', "microservices/activia/#{@projects["activia"][:revision]}-qa.tar.gz")
|
|
@@ -1331,7 +1331,7 @@ class Release
|
|
|
1331
1331
|
},
|
|
1332
1332
|
{
|
|
1333
1333
|
parameter_key: "ReleaseName",
|
|
1334
|
-
parameter_value: "
|
|
1334
|
+
parameter_value: "rogoreport"
|
|
1335
1335
|
},
|
|
1336
1336
|
{
|
|
1337
1337
|
parameter_key: "ECSClusterName",
|
|
@@ -2156,7 +2156,7 @@ class Release
|
|
|
2156
2156
|
end
|
|
2157
2157
|
|
|
2158
2158
|
def deploy_pyxis?
|
|
2159
|
-
if defined? @deploy_pyxis
|
|
2159
|
+
if defined? @deploy_pyxis
|
|
2160
2160
|
@deploy_pyxis
|
|
2161
2161
|
else
|
|
2162
2162
|
pyxis_updated = `git log -p -1 --unified=0 | grep pyxis-npm:`.length > 0
|
|
@@ -2454,7 +2454,7 @@ class Release
|
|
|
2454
2454
|
'-c' 'mix local.hex --force && mix hex.info && \
|
|
2455
2455
|
mix deps.get && mix compile && mix deps.compile && \
|
|
2456
2456
|
rm -rf _build/qa/rel/ && \
|
|
2457
|
-
mix release --name=
|
|
2457
|
+
mix release --name=rogoreport --env=qa'"
|
|
2458
2458
|
].each do |cmd|
|
|
2459
2459
|
execute_command cmd
|
|
2460
2460
|
end
|
|
@@ -2468,14 +2468,14 @@ class Release
|
|
|
2468
2468
|
mix local.hex --force && mix hex.info && \
|
|
2469
2469
|
mix deps.get && mix compile && mix deps.compile && \
|
|
2470
2470
|
rm -rf _build/qa/rel/ && \
|
|
2471
|
-
mix release --
|
|
2471
|
+
mix release --env=qa'"
|
|
2472
2472
|
].each do |cmd|
|
|
2473
2473
|
execute_command cmd
|
|
2474
2474
|
end
|
|
2475
2475
|
end
|
|
2476
2476
|
|
|
2477
|
-
artifact_path = Dir.glob("_build/qa/rel/rogoreport
|
|
2478
|
-
upload_artifact(artifact_path, "microservices/rogoreport/
|
|
2477
|
+
artifact_path = Dir.glob("_build/qa/rel/rogoreport/releases/*/rogoreport.tar.gz").first
|
|
2478
|
+
upload_artifact(artifact_path, "microservices/rogoreport/rogoreport-#{revision}-qa.tar.gz", "#{@s3_bucket}-encrypted")
|
|
2479
2479
|
|
|
2480
2480
|
Dir.chdir '../../'
|
|
2481
2481
|
end
|
|
@@ -2711,7 +2711,6 @@ class Release
|
|
|
2711
2711
|
end
|
|
2712
2712
|
|
|
2713
2713
|
def create_prima_artifact(revision, branch_name, deploy_id, minimal = false)
|
|
2714
|
-
# @projects["prima"][:revision], @projects["prima"][:name], deploy_id, true
|
|
2715
2714
|
output "Preparo l'artifact prima .zip\n".yellow
|
|
2716
2715
|
|
|
2717
2716
|
git_checkout_version('prima', revision)
|
|
@@ -2726,17 +2725,6 @@ class Release
|
|
|
2726
2725
|
end
|
|
2727
2726
|
end
|
|
2728
2727
|
|
|
2729
|
-
# backoffice_qa_host = get_route53_hostname("ecs-task-borat-qa-notneeded")
|
|
2730
|
-
# # backoffice-staging.prima.it
|
|
2731
|
-
# web_qa_host = get_route53_hostname("ecs-task-web-qa-notneeded")
|
|
2732
|
-
# # staging.prima.it
|
|
2733
|
-
# assange_qa_host = get_route53_hostname("ecs-task-assange-qa-notneeded")
|
|
2734
|
-
# # assange-staging.prima.it
|
|
2735
|
-
# if minimal
|
|
2736
|
-
# backoffice_qa_host = 'backoffice-staging.prima.it'
|
|
2737
|
-
# assange_qa_host = 'assange-staging.prima.it'
|
|
2738
|
-
# end
|
|
2739
|
-
|
|
2740
2728
|
if @qainit
|
|
2741
2729
|
exec_step 'mv docker-compose-ci.yml docker-compose.yml'
|
|
2742
2730
|
exec_step 'prepare-docker-compose --directory prima'
|
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.49.
|
|
4
|
+
version: 0.49.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matteo Giachino
|
|
@@ -14,7 +14,7 @@ authors:
|
|
|
14
14
|
autorequire:
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
|
-
date: 2019-09-
|
|
17
|
+
date: 2019-09-04 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: aws-sdk
|