prima-twig 0.37.11 → 0.37.12
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 +3 -2
- 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: 00e9b2a6943dab8a68e4bec3d9b745e27203a466c41670296e103a19c19b6905
|
|
4
|
+
data.tar.gz: 125319baec9ca377ff827f4a76b7516dbcc129c1ac7785a35d38bb9ce1d5cd03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c338cf48fca43b9337a27df801a32c71519ca35de751dc1d94b263141d2b6e4d70a9262dcb94b749a0c0767bbfc9d0b6c4d044c3128d128324564731cd91b548
|
|
7
|
+
data.tar.gz: 238a785530f2affb7386e28681582bdeea974a3a8acb347fd44b37dd3891214fdfe0f7273720ec84a5ff1db6ad50f16a0e688720194cf1cad5c486a2b3f85dc3
|
data/bin/twig-feature
CHANGED
|
@@ -2286,6 +2286,7 @@ class Release
|
|
|
2286
2286
|
cleanup_containers
|
|
2287
2287
|
else
|
|
2288
2288
|
[
|
|
2289
|
+
"docker network create borat_network || true",
|
|
2289
2290
|
"docker-compose build backend",
|
|
2290
2291
|
"docker run -v $PWD:/code -w /code -e WS_ENDPOINT=#{ws_endpoint} -e FRONTEND=#{frontend_endpoint} -e MIX_ENV=qa --entrypoint /bin/sh borat_backend \
|
|
2291
2292
|
'-c' 'sed -i \"s/web-qa-host/#{web_qa_host}/g\" config/qa.exs && \
|
|
@@ -2345,7 +2346,7 @@ class Release
|
|
|
2345
2346
|
exec_step 'prepare-docker-compose --directory backoffice && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2346
2347
|
[
|
|
2347
2348
|
"docker-compose build",
|
|
2348
|
-
"docker-compose run -
|
|
2349
|
+
"docker-compose run -e DRONE=yes --entrypoint /bin/bash web '-c' 'sed -i \"s/web-qa-url/#{web_qa_host}/g\" Gruntfile.js && sed -i \"s/web-qa-ri-url/#{webri_qa_host}/g\" Gruntfile.js && sed -i \"s/qa-ip/#{ip_qa_host}/g\" Gruntfile.js && npm install && grunt qa'"
|
|
2349
2350
|
].each do |cmd|
|
|
2350
2351
|
execute_command cmd
|
|
2351
2352
|
end
|
|
@@ -2355,7 +2356,7 @@ class Release
|
|
|
2355
2356
|
[
|
|
2356
2357
|
"docker-compose build",
|
|
2357
2358
|
"rm -rf src/ && git checkout -- .",
|
|
2358
|
-
"docker run -
|
|
2359
|
+
"docker run -e DRONE=yes --entrypoint /bin/bash backoffice_web '-c' 'sed -i \"s/web-qa-url/#{web_qa_host}/g\" Gruntfile.js && sed -i \"s/web-qa-ri-url/#{webri_qa_host}/g\" Gruntfile.js && npm install && grunt qa'"
|
|
2359
2360
|
].each do |cmd|
|
|
2360
2361
|
execute_command cmd
|
|
2361
2362
|
end
|