prima-twig 0.56.8 → 0.56.9
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 -17
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ac646e3c4d23700043722b27a2ced152e56f08d773fc8e42a85191f4889f375
|
|
4
|
+
data.tar.gz: 628bcbdae90804187d102651c2224115aa089abf465afe965d681edc28968a85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e095af24c0e4ddcee31a53ed3ba39a3f545803e84ef383215aef2752cc7b32b4e606ebddbd391e62bd01476947cd7ca35590bfe253a5e330ebeb1a6a1e18d6fd
|
|
7
|
+
data.tar.gz: fa254b912c5e7bad9edf32490a672f3d404a8c33a9bb1014b625eebcd32a37541ea41c98f4eb337c6a5df290d65e3eb2446552d0701d2f461291424aaa79a60e
|
data/bin/twig-feature
CHANGED
|
@@ -2506,29 +2506,16 @@ class Release
|
|
|
2506
2506
|
|
|
2507
2507
|
Dir.chdir 'projects/hutch'
|
|
2508
2508
|
|
|
2509
|
-
version = `git rev-parse HEAD`
|
|
2510
|
-
|
|
2511
2509
|
decrypt_secrets() unless File.exist?('config/secrets.yml')
|
|
2512
2510
|
|
|
2513
|
-
exec_step 'git submodule update'
|
|
2514
2511
|
exec_step 'cp docker-compose-ci.yml docker-compose.yml'
|
|
2515
2512
|
exec_step 'prepare-docker-compose --directory hutch && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2516
|
-
exec_step "sed s/qa_deploy_id/#{get_deploy_id}/ .env.dist.qa"
|
|
2517
|
-
exec_step "cp .env.dist.qa .env"
|
|
2518
|
-
exec_step "rm -fr peano"
|
|
2519
2513
|
|
|
2520
|
-
|
|
2521
|
-
"sed -i 's/USER app/USER root/g' Dockerfile",
|
|
2522
|
-
"docker-compose build web",
|
|
2523
|
-
"docker-compose run -w $PWD -u root -e ELM_APP_STARSKY_URL=https://#{get_route53_hostname("starsky")} --entrypoint /bin/sh web \
|
|
2524
|
-
'-c' 'yarn && yarn run build \
|
|
2525
|
-
&& tar cfz #{revision}-qa.tar.gz *'"
|
|
2526
|
-
].each do |cmd|
|
|
2527
|
-
execute_command cmd
|
|
2528
|
-
end
|
|
2514
|
+
execute_command "deploy/build_qa_artifact #{get_route53_hostname("maia-intermediari")}"
|
|
2529
2515
|
|
|
2530
|
-
|
|
2516
|
+
cleanup_containers
|
|
2531
2517
|
|
|
2518
|
+
artifact_path = "./hutch.tar.gz"
|
|
2532
2519
|
upload_artifact(artifact_path, "microservices/hutch/#{revision}-qa.tar.gz", "#{@s3_bucket}-encrypted")
|
|
2533
2520
|
|
|
2534
2521
|
Dir.chdir '../../'
|
|
@@ -2577,7 +2564,7 @@ class Release
|
|
|
2577
2564
|
exec_step 'prepare-docker-compose --directory maia && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2578
2565
|
|
|
2579
2566
|
execute_command 'deploy/build_qa_artifact'
|
|
2580
|
-
|
|
2567
|
+
|
|
2581
2568
|
cleanup_containers
|
|
2582
2569
|
|
|
2583
2570
|
artifact_path = Dir.glob('_build/qa/rel/maia/releases/*/maia.tar.gz').first
|