prima-twig 0.63.10 → 0.63.11
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 +13 -9
- 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: 4aeacbcd09197f26def1a856763ae3fa2600e40357af07bb5b1058aef8a721cf
|
|
4
|
+
data.tar.gz: df9b9d9cfaf2465e28df56debfda9b974bf7bdca00f284bfbecfc18c905d0e1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcebae3f910c6e8aa03f543659f5e513ade97f9d3b73af95d0f3ce636e1d9078e19dde3fb72eb439be9e652b53ecadb7ad93027dffc268ad56aa4d5232d40e84
|
|
7
|
+
data.tar.gz: c9176d9b9011784479516f591db37fed7dcaf9f56e5c9f60789cd79859f8ac2e9d97ef58d6e0fc7cfa3eb484fdd835ebcc6368c90d2fd029ed491829e3bc3e3f
|
data/bin/twig-feature
CHANGED
|
@@ -2631,15 +2631,19 @@ class Release
|
|
|
2631
2631
|
exec_step 'cp docker-compose.yml docker-compose-ci.yml'
|
|
2632
2632
|
exec_step 'prepare-docker-compose --directory urania && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2633
2633
|
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2634
|
+
if File.exists? 'deploy/build_qa_artifact'
|
|
2635
|
+
execute_command "deploy/build_qa_artifact"
|
|
2636
|
+
else
|
|
2637
|
+
[
|
|
2638
|
+
"docker-compose build web"
|
|
2639
|
+
"docker-compose run -w $PWD -u root -e MIX_ENV=qa --entrypoint /bin/sh web \
|
|
2640
|
+
'-c' 'mix local.hex --force && mix hex.info && \
|
|
2641
|
+
mix deps.get && mix compile && mix deps.compile && \
|
|
2642
|
+
rm -rf _build/qa/rel/ && \
|
|
2643
|
+
mix release --env=qa'"
|
|
2644
|
+
].each do |cmd|
|
|
2645
|
+
execute_command cmd
|
|
2646
|
+
end
|
|
2643
2647
|
end
|
|
2644
2648
|
|
|
2645
2649
|
cleanup_containers
|