prima-twig 0.37.8 → 0.37.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 -7
- 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: 3e37472c37d2bf8bf041a2548ca4f139f6c131a09253b577cf809705a07411fd
|
|
4
|
+
data.tar.gz: 8a0e4fb91c97412e77c42db1032032e916d1747355da11b159e88f0a54cfeace
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aac95e399ba94e7009bb4da6151fb5eb02d22d89c71598c986905bb05d890fa790ef2d071ecd53d33dac12b67dd30aba0356a33ff4d0bfebee5d052658c1647
|
|
7
|
+
data.tar.gz: d768777888911d90b5041388480121e7cff406e372e362418ef5157bb07cc4626dd753c89e9848b12430180b4920e51eda8535a2784ff34386403e529d12ed95
|
data/bin/twig-feature
CHANGED
|
@@ -2343,10 +2343,8 @@ class Release
|
|
|
2343
2343
|
#exec_step 'cp docker-compose-ci.yml docker-compose.yml'
|
|
2344
2344
|
exec_step 'prepare-docker-compose --directory backoffice && cp docker-compose-qainit.yml docker-compose.yml'
|
|
2345
2345
|
[
|
|
2346
|
-
"docker-compose build
|
|
2347
|
-
"docker-compose
|
|
2348
|
-
"docker-compose run -e GIT_DIR=$PWD -w $PWD bower install --allow-root",
|
|
2349
|
-
"docker-compose run -w $PWD -e PHANTOMJS_BIN=/code/node_modules/grunt-selenium-webdriver/node_modules/phantomjs/bin/phantomjs --entrypoint /bin/bash workers '-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'"
|
|
2346
|
+
"docker-compose build",
|
|
2347
|
+
"docker-compose run -w $PWD -e PHANTOMJS_BIN=/code/node_modules/grunt-selenium-webdriver/node_modules/phantomjs/bin/phantomjs -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'"
|
|
2350
2348
|
].each do |cmd|
|
|
2351
2349
|
execute_command cmd
|
|
2352
2350
|
end
|
|
@@ -2354,10 +2352,9 @@ class Release
|
|
|
2354
2352
|
cleanup_containers
|
|
2355
2353
|
else
|
|
2356
2354
|
[
|
|
2357
|
-
"docker-compose build
|
|
2355
|
+
"docker-compose build",
|
|
2358
2356
|
"rm -rf src/ && git checkout -- .",
|
|
2359
|
-
"
|
|
2360
|
-
"docker run -v $PWD:/code -w /code -e PHANTOMJS_BIN=/code/node_modules/grunt-selenium-webdriver/node_modules/phantomjs/bin/phantomjs --entrypoint /bin/bash backoffice_workers '-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'"
|
|
2357
|
+
"docker run -v $PWD:/code -w /code -e PHANTOMJS_BIN=/code/node_modules/grunt-selenium-webdriver/node_modules/phantomjs/bin/phantomjs --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'"
|
|
2361
2358
|
].each do |cmd|
|
|
2362
2359
|
execute_command cmd
|
|
2363
2360
|
end
|