prima-twig 0.48.12 → 0.48.13
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 +9 -22
- 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: e267253e4d7e7feddb2d1ae33931608f9970e456c4f2b33a07dece31a07870fa
|
|
4
|
+
data.tar.gz: 9831f3cc8f3418f9f63e559dfe340befee8dca1d17fd00f6af807baa335cade0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2fe4a3cab130e41f5119d5f6bb879b30907c9eaa858d08c20963493937b5842ba1528636c033a8364ec8fc2f098dd8bb17457db8820554ca1761e92b25bad41
|
|
7
|
+
data.tar.gz: 5aa823bbd0f103c909c5ea7a81f671e97af6f5c91bc98f24aab18f0fa2ede4563a415a115de1f206633a6b6eb4fbf2fb706830ad3a8fcc969670179ec7dd6ad9
|
data/bin/twig-feature
CHANGED
|
@@ -2225,30 +2225,17 @@ class Release
|
|
|
2225
2225
|
|
|
2226
2226
|
decrypt_secrets()
|
|
2227
2227
|
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
execute_command cmd
|
|
2236
|
-
end
|
|
2237
|
-
|
|
2238
|
-
cleanup_containers
|
|
2239
|
-
else
|
|
2240
|
-
[
|
|
2241
|
-
"docker-compose build web",
|
|
2242
|
-
"docker run -v $PWD:/code -w /code -e MIX_ENV=qa --entrypoint /bin/sh bburago_web \
|
|
2243
|
-
'-c' 'mix local.hex --force && mix hex.info && \
|
|
2244
|
-
mix deps.get && mix compile && mix deps.compile && \
|
|
2245
|
-
rm -rf _build/qa/rel/ && \
|
|
2246
|
-
mix release --env=qa'"
|
|
2247
|
-
].each do |cmd|
|
|
2248
|
-
execute_command cmd
|
|
2249
|
-
end
|
|
2228
|
+
exec_step 'cp docker-compose.yml docker-compose-ci.yml'
|
|
2229
|
+
exec_step 'prepare-docker-compose --directory bburago && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2230
|
+
[
|
|
2231
|
+
"docker-compose build web",
|
|
2232
|
+
"docker-compose run -w $PWD -u root -e MIX_ENV=qa --entrypoint deploy/create_qa_artifact web"
|
|
2233
|
+
].each do |cmd|
|
|
2234
|
+
execute_command cmd
|
|
2250
2235
|
end
|
|
2251
2236
|
|
|
2237
|
+
cleanup_containers
|
|
2238
|
+
|
|
2252
2239
|
artifact_path = Dir.glob('_build/qa/rel/bburago/releases/*/bburago.tar.gz').first
|
|
2253
2240
|
upload_artifact(artifact_path, "microservices/bburago/#{revision}-qa.tar.gz", "#{@s3_bucket}-encrypted")
|
|
2254
2241
|
|