prima-twig 0.59.4 → 0.59.5
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 +21 -16
- 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: 46bbc2836fcb68d207738300559ea4e690fcad14adbb544306e54213d238e86f
|
|
4
|
+
data.tar.gz: 1f6d94cfacf68ed7d4024a179986228034c685e7bb080b7ae6c7869fa85b23fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f6c1340ce9acbeeae49dea729cc8b11d2cfc38f815a21a7e0438a8422b7ccd9d28b6715729c2cea24419f6906f4be7d1d86411470a696f40b5cdb38de395ccc
|
|
7
|
+
data.tar.gz: 266ed72ced2080adc5360dffeb4eebe0a3ef835fd59674c95e64fd5e184a6a095549cacb0ed37d84fb01f1ea777a1724c122cbbba657fde63cc1a7ed04b6829c
|
data/bin/twig-feature
CHANGED
|
@@ -2089,22 +2089,27 @@ class Release
|
|
|
2089
2089
|
|
|
2090
2090
|
exec_step 'cp docker-compose.yml docker-compose-ci.yml'
|
|
2091
2091
|
exec_step 'prepare-docker-compose --directory borat && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2092
|
+
|
|
2093
|
+
if File.exists? 'deploy/build_qa_artifact'
|
|
2094
|
+
execute_command "deploy/build_qa_artifact"
|
|
2095
|
+
else
|
|
2096
|
+
[
|
|
2097
|
+
"docker network create borat_network || true",
|
|
2098
|
+
"docker-compose build web",
|
|
2099
|
+
"docker-compose run -w $PWD -u root -e MIX_ENV=qa --entrypoint /bin/sh web \
|
|
2100
|
+
'-c' 'mix local.hex --force && mix hex.info && \
|
|
2101
|
+
mix deps.get && \
|
|
2102
|
+
cd assets && \
|
|
2103
|
+
yarn --cache-folder ~/.cache/yarn && \
|
|
2104
|
+
sysconfcpus -n 2 ./node_modules/.bin/webpack -p --config config/webpack.config.prod.js && \
|
|
2105
|
+
cd ../ && \
|
|
2106
|
+
mix phx.digest && \
|
|
2107
|
+
mix compile && mix deps.compile && \
|
|
2108
|
+
rm -rf _build/qa/rel/ && \
|
|
2109
|
+
mix distillery.release --env=qa'"
|
|
2110
|
+
].each do |cmd|
|
|
2111
|
+
execute_command cmd
|
|
2112
|
+
end
|
|
2108
2113
|
end
|
|
2109
2114
|
|
|
2110
2115
|
cleanup_containers
|