prima-twig 0.36.83 → 0.36.84
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 +2 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a60adcc34c18b47d5495aa18429423e0fbc1901f
|
|
4
|
+
data.tar.gz: 434af59264be43f6f6b8fdc6786003584d34fb3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd6ea84728bb0086a3d9fbe78e04a89847ac3a1f3ee84ebe837bede4195c1b188e26131b09862c4741281f5fd8bd77db19f450691ea2055daaaaccd5e12ef7d7
|
|
7
|
+
data.tar.gz: fe091f557376f6c33f57742cb97ca043bd7901ecb0e175d75483b2d7c629f230dcbf72926a3b26e2d5e41898afc270468da8180e79ab3f855312901df1503f8c
|
data/bin/twig-feature
CHANGED
|
@@ -558,6 +558,7 @@ class Release
|
|
|
558
558
|
@projects[project[0]] = {:name=> project[1], :revision=> project[2], :default_branch=> project[3]}
|
|
559
559
|
end
|
|
560
560
|
end
|
|
561
|
+
output @projects
|
|
561
562
|
get_s3_config_files
|
|
562
563
|
@qainit = true
|
|
563
564
|
if ('shutdown' == action)
|
|
@@ -737,7 +738,7 @@ class Release
|
|
|
737
738
|
create_activia_artifact(@projects["activia"][:revision], deploy_id) unless artifact_exists?('prima-artifacts-encrypted', "microservices/activia/#{@projects["activia"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
738
739
|
|
|
739
740
|
wait_for_stack_ready(stack_name_db) unless stack_ready?(stack_name_db)
|
|
740
|
-
import_dbs(ec2_ip_address(asg_stack_name)) unless stack_exists?("ecs-task-web-qa-#{deploy_id}")
|
|
741
|
+
# import_dbs(ec2_ip_address(asg_stack_name)) unless stack_exists?("ecs-task-web-qa-#{deploy_id}")
|
|
741
742
|
|
|
742
743
|
import_redis_crash(ec2_ip_address(asg_stack_name)) if deploy_crash? && !stack_exists?("ecs-task-web-qa-#{deploy_id}")
|
|
743
744
|
|
|
@@ -1667,7 +1668,6 @@ class Release
|
|
|
1667
1668
|
if @qainit
|
|
1668
1669
|
exec_step 'cp docker-compose.yml docker-compose-ci.yml'
|
|
1669
1670
|
exec_step 'prepare-docker-compose --directory ermes && cp docker-compose-qainit.yml docker-compose.yml'
|
|
1670
|
-
execute_command 'cat docker-compose.yml'
|
|
1671
1671
|
end
|
|
1672
1672
|
[
|
|
1673
1673
|
"if echo `docker network ls` | grep crash_default; \
|
|
@@ -2311,13 +2311,8 @@ class Release
|
|
|
2311
2311
|
webri_qa_host = web_qa_host.sub("www", "wwwri")
|
|
2312
2312
|
|
|
2313
2313
|
if @qainit
|
|
2314
|
-
execute_command 'cat docker-compose.yml'
|
|
2315
2314
|
exec_step 'cp docker-compose-ci.yml docker-compose.yml'
|
|
2316
2315
|
exec_step 'prepare-docker-compose --directory backoffice && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2317
|
-
execute_command 'ls -al'
|
|
2318
|
-
execute_command 'cat docker-compose-ci.yml'
|
|
2319
|
-
execute_command 'cat docker-compose-qainit.yml'
|
|
2320
|
-
execute_command 'cat docker-compose.yml'
|
|
2321
2316
|
[
|
|
2322
2317
|
"docker-compose build workers",
|
|
2323
2318
|
"docker-compose build bower",
|
|
@@ -2674,7 +2669,6 @@ class Release
|
|
|
2674
2669
|
if @host_container_name
|
|
2675
2670
|
@host_container_name
|
|
2676
2671
|
else
|
|
2677
|
-
execute_command 'cat /etc/hostname'
|
|
2678
2672
|
hostname = `cat /etc/hostname`.gsub("\n", '')
|
|
2679
2673
|
execute_command "docker ps | grep #{hostname} | awk '{print $NF}'"
|
|
2680
2674
|
@host_container_name = `docker ps | grep #{hostname} | awk '{print $NF}'`.gsub("\n", '')
|