prima-twig 0.31.49 → 0.31.50
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 +4 -2
- 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: 159aa9271c7e077d913e94be719940e7bd1feb35
|
|
4
|
+
data.tar.gz: a5eaf72fe3b08f25ae6f67bccf842b7682c40794
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90bbb8fe866994a2917fae412722b3f38efb1da2d64b6533cb85ad9ae87b2e41b5b1d674e6e4aba19d73b58c218ea241be263eddfc2c79a53b4a4653501bcdcd
|
|
7
|
+
data.tar.gz: 8b085f8ab5c016eeb9dd7dac72e036ff9e115ab62d58e87faec585d87f9e256eca71586dd28fea9b21b5bd892fd6c60eed39496940fec70f3701b9e294dc0db2
|
data/bin/twig-feature
CHANGED
|
@@ -482,7 +482,7 @@ class Release
|
|
|
482
482
|
create_backoffice_artifact(@projects["backoffice"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "backoffice/#{@projects["backoffice"][:revision]}-#{deploy_id}.zip")
|
|
483
483
|
create_peano_artifact(@projects["peano"][:revision], deploy_id) unless artifact_exists?('prima-artifacts-encrypted', "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
|
-
create_assange_artifact(@projects["assange"][:revision], deploy_id) unless artifact_exists?('prima-artifacts', "microservices/assange/#{@projects["assange"][:revision]}-#{deploy_id}-qa.tar.gz")
|
|
485
|
+
create_assange_artifact(@projects["assange"][:revision], deploy_id) unless artifact_exists?('prima-artifacts-encrypted', "microservices/assange/#{@projects["assange"][:revision]}-#{deploy_id}-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")
|
|
487
487
|
|
|
488
488
|
wait_for_stack_ready(stack_name_db) unless stack_ready?(stack_name_db)
|
|
@@ -1527,6 +1527,8 @@ class Release
|
|
|
1527
1527
|
stack_name_web = 'ecs-task-web-qa-notneeded'
|
|
1528
1528
|
web_qa_host = get_route53_hostname(stack_name_web)
|
|
1529
1529
|
|
|
1530
|
+
decrypt_secrets()
|
|
1531
|
+
|
|
1530
1532
|
[
|
|
1531
1533
|
"docker-compose build web",
|
|
1532
1534
|
"docker run -v $PWD:/code -w /code -e MIX_ENV=qa --entrypoint /bin/sh assange_web \
|
|
@@ -1541,7 +1543,7 @@ class Release
|
|
|
1541
1543
|
end
|
|
1542
1544
|
|
|
1543
1545
|
artifact_path = Dir.glob("_build/qa/rel/assange/releases/*/assange.tar.gz").first
|
|
1544
|
-
upload_artifact(artifact_path, "microservices/assange/#{revision}-#{deploy_id}-qa.tar.gz")
|
|
1546
|
+
upload_artifact(artifact_path, "microservices/assange/#{revision}-#{deploy_id}-qa.tar.gz", "#{@s3_bucket}-encrypted")
|
|
1545
1547
|
|
|
1546
1548
|
Dir.chdir '../../'
|
|
1547
1549
|
end
|