-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keep releases keeps adding directories (named 1, 1.1, 1.1.2, 1.1.2.3) #1004
Comments
Try to clear releases dir (leave only last release) and delete |
Hi Anton,
thank you for your reply.
I run the experiment as you suggested but I still observe the
same wrong behavior: these directories are created in the
following order after 5 runs of deployer:
1, 1.1, 1.1.2, 1.1.2.3, 1.1.2.3.4
Thanks.
Kind regards,
Filippo
On 09/02/2017 14:23, Anton Medvedev
wrote:
Try to clear releases dir (leave only last release) and delete
.dep dir. Then deploy again.
—
You are receiving this because you authored the thread.
Reply to this email directly, view
it on GitHub, or mute
the thread.
{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/deployphp/deployer","title":"deployphp/deployer","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/deployphp/deployer"}},"updates":{"snippets":[{"icon":"PERSON","message":"@elfet in #1004: Try to clear releases dir (leave only last release) and delete `.dep` dir. Then deploy again."}],"action":{"name":"View Issue","url":"#1004 (comment)"}}}
|
This dir names indecates what deployer does not recognize task('debug', function () {
writeln(json_encode(get('releases_list')));
});
after('deploy:release', 'debug'); |
I added the lines of code just before the task('deploy')
definition in the above deploy.php. I hope it Is the right place
where to add the snippet of debug code.
/**
* Main task
*/
task('deploy', [
'deploy:prepare',
'deploy:release',
'deploy:update_code',
'deploy:vendors',
'deploy:symlink',
'cleanup',
'environment',
])->desc('Deploy your project');
Output is:
dep deploy -vvv
➤ Executing task deploy:prepare
[staging] > echo $0
SSH multiplexing initialization
[staging] < bash
[staging] > if [ ! -d
/home/provrtsp/public_html/promarket11.com ]; then mkdir -p
/home/provrtsp/public_html/promarket11.com; fi
[staging] > if [ ! -L
/home/provrtsp/public_html/promarket11.com/current ] && [
-d /home/provrtsp/public_html/promarket11.com/current ]; then echo
true; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& if [ ! -d .dep ]; then mkdir .dep; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& if [ ! -d releases ]; then mkdir releases; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& if [ ! -d shared ]; then mkdir shared; fi
• done on [staging]
✔ Ok [9s 741ms]
➤ Executing task deploy:release
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (if [ -h release ]; then echo 'true'; fi)
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& ([ -d releases ] && [ "$(ls -A releases)" ]
&& echo "true" || echo "false")
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (cd releases && ls -t -d */)
[staging] < 1.1/ 1/ 1.1.2.3.4.5.6.7/ 1.1.2.3.4.5.6/
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (if [ -f .dep/releases ]; then echo "true"; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (tail -n 11 .dep/releases)
[staging] < 20170209082756,1
[staging] < 20170209083140,1.1
[staging] < 20170209083515,1.1.2
[staging] < 20170209092822,1.1.2.3.4
[staging] < 20170209094740,1.1.2.3.4.5
[staging] < 20170209101619,1.1.2.3.4.5.6
[staging] < 20170209103545,1.1.2.3.4.5.6.7
[staging] < 20170209111255,1
[staging] < 20170209111804,1.1
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (if [ -d
/home/provrtsp/public_html/promarket11.com/releases/1 ]; then echo
'true'; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (if [ -d
/home/provrtsp/public_html/promarket11.com/releases/1.1 ]; then
echo 'true'; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (if [ -d
/home/provrtsp/public_html/promarket11.com/releases/1.1.2 ]; then
echo 'true'; fi)
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (date +"%Y%m%d%H%M%S")
[staging] < 20170209112118
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (echo '20170209112118,1.1.2' >> .dep/releases)
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (mkdir
/home/provrtsp/public_html/promarket11.com/releases/1.1.2)
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (if [[ "$(man ln)" =~ "--relative" ]]; then echo
"true"; fi)
[staging] < bash: man: command not found
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& (ln -nfs
/home/provrtsp/public_html/promarket11.com/releases/1.1.2
/home/provrtsp/public_html/promarket11.com/release)
• done on [staging]
✔ Ok [7s 570ms]
➤ Executing task debug
[]
• done on [staging]
✔ Ok [1ms]
➤ Executing task deploy:update_code
[staging] > which git
[staging] < /usr/local/bin/git
[staging] > /usr/local/bin/git version
[staging] < git version 2.10.0
[staging] > if [ -h
/home/provrtsp/public_html/promarket11.com/release ]; then echo
'true'; fi
[staging] < true
[staging] > readlink
/home/provrtsp/public_html/promarket11.com/release
[staging] <
/home/provrtsp/public_html/promarket11.com/releases/1.1.2
[staging] > /usr/local/bin/git clone -b master --recursive -q
git@gitlab.com:nerifil/mp.git
/home/provrtsp/public_html/promarket11.com/releases/1.1.2
2>&1
• done on [staging]
✔ Ok [16s 381ms]
➤ Executing task deploy:vendors
[staging] > if hash composer 2>/dev/null; then echo 'true';
fi
[staging] < true
[staging] > which composer
[staging] < /opt/cpanel/composer/bin/composer
[staging] > cd
/home/provrtsp/public_html/promarket11.com/releases/1.1.2
&& /opt/cpanel/composer/bin/composer install --verbose
--prefer-dist --no-progress --no-interaction --no-dev
--optimize-autoloader
[staging] < Loading composer repositories with package
information
[staging] < Installing dependencies from lock file
[staging] < Dependency resolution completed in 0.001 seconds
[staging] < Analyzed 135 packages to resolve dependencies
[staging] < Analyzed 328 rules to resolve dependencies
[staging] < - Installing symfony/process (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing knplabs/knp-snappy (0.4.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing vlucas/phpdotenv (v2.4.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/polyfill-mbstring (v1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/var-dumper (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/translation (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/routing (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/http-foundation (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/event-dispatcher (v3.2.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing psr/log (1.0.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/debug (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/http-kernel (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/finder (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/console (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing swiftmailer/swiftmailer (v5.4.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing paragonie/random_compat (v2.0.4)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing ramsey/uuid (3.5.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing nikic/php-parser (v3.0.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing jakub-onderka/php-console-color
(0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing
jakub-onderka/php-console-highlighter (v0.3.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing dnoegel/php-xdg-base-dir (0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing psy/psysh (v0.8.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing nesbot/carbon (1.22.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing mtdowling/cron-expression (v1.2.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing monolog/monolog (1.22.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing league/flysystem (1.0.34)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/polyfill-util (v1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/polyfill-php56 (v1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing jeremeamia/superclosure (2.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing doctrine/inflector (v1.1.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing classpreloader/classpreloader
(3.1.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing laravel/framework (v5.3.30)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing barryvdh/laravel-snappy (v0.3.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/yaml (v3.2.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/dom-crawler (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/css-selector (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/browser-kit (v3.2.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/diff (1.4.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/recursion-context (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/exporter (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/comparator (1.2.4)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/version (2.0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/resource-operations
(1.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/object-enumerator (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/global-state (1.1.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/environment (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-text-template (1.2.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing doctrine/instantiator (1.0.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/phpunit-mock-objects (3.4.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-timer (1.0.8)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-file-iterator (1.4.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/code-unit-reverse-lookup
(1.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-token-stream (1.4.9)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-code-coverage (4.0.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing webmozart/assert (1.2.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpdocumentor/reflection-common
(1.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpdocumentor/type-resolver (0.2.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpdocumentor/reflection-docblock
(3.1.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpspec/prophecy (v1.6.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing myclabs/deep-copy (1.6.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/phpunit (5.7.12)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing psr/http-message (1.0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing guzzlehttp/psr7 (1.3.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing guzzlehttp/promises (v1.3.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing guzzlehttp/guzzle (6.2.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing facebook/webdriver (1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing behat/gherkin (v4.4.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing codeception/codeception (2.2.9)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing h4cc/wkhtmltoimage-amd64 (0.12.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing h4cc/wkhtmltopdf-amd64 (0.12.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing laravelcollective/html (v5.3.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing pusher/pusher-php-server (2.6.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing stripe/stripe-php (v4.4.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < Generating optimized autoload files
[staging] < > post-install-cmd:
Illuminate\Foundation\ComposerScripts::postInstall
[staging] < > post-install-cmd: php artisan optimize
[staging] < Generating optimized class loader
[staging] < Compiling common classes
• done on [staging]
✔ Ok [110s 490ms]
➤ Executing task deploy:symlink
[staging] > if [[ "$(man mv)" =~ "--no-target-directory" ]];
then echo "true"; fi
[staging] < bash: man: command not found
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& ln -nfs
/home/provrtsp/public_html/promarket11.com/releases/1.1.2 current
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& rm release
• done on [staging]
✔ Ok [2s 878ms]
➤ Executing task cleanup
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& if [ -e release ]; then rm release; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com
&& if [ -h release ]; then rm release; fi
• done on [staging]
✔ Ok [1s 126ms]
➤ Executing task environment
[staging] > cp /home/provrtsp/shared/env
/home/provrtsp/public_html/promarket11.com/releases/1.1.2/.env
[staging] > cp /home/provrtsp/shared/htaccess
/home/provrtsp/.htaccess
[staging] > cp /home/provrtsp/shared/index.php
/home/provrtsp/index.php
[staging] > cp /home/provrtsp/shared/htaccess
/home/provrtsp/public_html/promarket11.com/.htaccess
[staging] > cp /home/provrtsp/shared/index.php
/home/provrtsp/public_html/promarket11.com/index.php
[staging] > cp /home/provrtsp/shared/htaccess
/home/provrtsp/public_html/promarket11.com/public_html/.htaccess
[staging] > cp /home/provrtsp/shared/index.php
/home/provrtsp/public_html/promarket11.com/public_html/index.php
[staging] > cp -r
/home/provrtsp/public_html/promarket11.com/current/public/faviconfolder
/home/provrtsp/public_html/promarket11.com/public_html/.
[staging] > cp -r
/home/provrtsp/public_html/promarket11.com/current/public/images
/home/provrtsp/public_html/promarket11.com/public_html/.
[staging] > cp -r
/home/provrtsp/public_html/promarket11.com/current/public/policy
/home/provrtsp/public_html/promarket11.com/public_html/.
• done on [staging]
✔ Ok [46s 30ms]
➤ Executing task success
✔ Ok [0ms]
➤ Executing task composer_rerun
[staging] > cd
/home/provrtsp/public_html/promarket11.com/current; php
~/composer.phar install
[staging] < Loading composer repositories with package
information
[staging] < Installing dependencies (including require-dev)
from lock file
[staging] < - Installing pimple/pimple (v3.0.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing phpseclib/phpseclib (2.0.4)
[staging] < Loading from cache
[staging] <
[staging] < - Installing psr/cache (1.0.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing symfony/cache (v3.2.3)
[staging] < Loading from cache
[staging] <
[staging] < - Installing symfony/expression-language (v3.2.3)
[staging] < Loading from cache
[staging] <
[staging] < - Installing evenement/evenement (v2.0.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/stream (v0.4.6)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/promise (v2.5.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/event-loop (v0.4.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/socket (v0.4.6)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/cache (v0.4.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/dns (v0.4.3)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/socket-client (v0.4.6)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/http-client (v0.4.15)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/http (v0.4.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/child-process (v0.4.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/react (v0.4.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing elfet/pure (v2.0.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing deployer/deployer (v4.2.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing deployer/phar-update (v2.0.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing fzaninotto/faker (v1.6.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing hamcrest/hamcrest-php (v1.2.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing mockery/mockery (0.9.7)
[staging] < Loading from cache
[staging] <
[staging] < phpseclib/phpseclib suggests installing
ext-libsodium (SSH2/SFTP can make use of some algorithms provided
by the libsodium-php extension.)
[staging] < symfony/cache suggests installing
symfony/polyfill-apcu (For using ApcuAdapter on HHVM)
[staging] < react/event-loop suggests installing ext-event
(~1.0)
[staging] < react/event-loop suggests installing ext-libev (*)
[staging] < react/event-loop suggests installing ext-libevent
(>=0.1.0)
[staging] < react/react suggests installing ext-event (Allows
for use of a more performant event-loop implementation.)
[staging] < react/react suggests installing ext-libev (Allows
for use of a more performant event-loop implementation.)
[staging] < react/react suggests installing ext-libevent
(Allows for use of a more performant event-loop implementation.)
[staging] < Generating autoload files
[staging] < >
Illuminate\Foundation\ComposerScripts::postInstall
[staging] < > php artisan optimize
[staging] < Generating optimized class loader
[staging] < Compiling common classes
• done on [staging]
✔ Ok [32s 597ms]
Successfully deployed!
On 09/02/2017 17:05, Anton Medvedev
wrote:
This dir names indecates what deployer does not recognize 1as
release. Please add this to deploy.php and show output:
task('debug', function () {
writeln(json_encode(get('releases_list'));
});
after('deploy:release', 'debug');
—
You are receiving this because you authored the thread.
Reply to this email directly, view
it on GitHub, or mute
the thread.
{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/deployphp/deployer","title":"deployphp/deployer","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/deployphp/deployer"}},"updates":{"snippets":[{"icon":"PERSON","message":"@elfet in #1004: This dir names indecates what deployer does not recognize `1`as release. Please add this to deploy.php and show output:\r\n```php\r\ntask('debug', function () {\r\n writeln(json_encode(get('releases_list'));\r\n});\r\nafter('deploy:release', 'debug');\r\n```"}],"action":{"name":"View Issue","url":"#1004 (comment)"}}}
|
Looks like deployer cant recognize releases list. Can you debug this part of code to see how releases list parsed? I can't reproduce this. |
Ok I'll try to debug it and let you know
On 10/02/2017 04:19, Anton Medvedev
wrote:
Looks like deployer cant recognize releases list. Can you debug
this part of code to see how releases list parsed?
I can't reproduce this.
—
You are receiving this because you authored the thread.
Reply to this email directly, view
it on GitHub, or mute
the thread.
{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/deployphp/deployer","title":"deployphp/deployer","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/deployphp/deployer"}},"updates":{"snippets":[{"icon":"PERSON","message":"@elfet in #1004: Looks like deployer cant recognize releases list. Can you debug this part of code to see how releases list parsed? \r\n\r\nI can't reproduce this. "}],"action":{"name":"View Issue","url":"#1004 (comment)"}}}
|
I believe that I have found the bug in the code responsible for the unexpected behavior. I am however not sure where to fix the code. Here is my understanding of the problem: the undesired behavior is caused by the result produced by toArray() at line 40 in file recipe/deploy/release.php, the relative snippet of the code is: ''set('releases_list', function () { rest of the code the toArray() function does not produce the expected result because the delimiter used is '\n' instead of a white space delimiter to break the string (please note that this simple fix does not work however as duplicate white spaces have to be removed as well). As an example: The expected result should be, I assume, that the array in $list would have 7 elements each one being the name of a directory in the input. Now the question is how/where to fix the code. I do not know well enough deployer to suggest to modify the toString() function as any modification there will also affect all the other calls in any part of the code. This is really a matter to be decided by Deployer's author. I simply report here a local code change which consists in replacing line 40 with the following lines:
// string containing two or more consecutive white spaces With the proposed modification, assuming that run() returns which I assume to be the correct result. What I still do not know in order to propose how to modify deployer's code: |
This is really strange behavior. Please, attache .dep/releases file here. |
here is the output from the shell after running the two echo commands: $ echo 'one' >> file here is the uploaded file (zipped) Anyway the content of the .dep/releases file is: Moreover I can confirm that now the set('keep_releases', 3); command produces the desired effect Finally I want to add that the parsing problem that I observed does not happen when parsing the .dep/releases file but in parsing the output of the shell command called by run('cd releases && ls -t -d */') |
Ok, so there may be some system specific in this command: ls -t -d */ |
$ ls -t -d */ the output is on one single line coreutils version is Written by Richard M. Stallman and David MacKenzie. |
I'm having the same problem. |
here is the patch that I made and I am currently using. I have done more than 10 deployments without any issue. So it seems to work. The attached file has to be copied in vendor/deployer/deployer/recipe/deploy/ |
Will do patch, but why ls act so? |
I did exactly the same! For now is working we will see in a few months. |
@filipponeri @franciscomemoli Guys, what php version do you use?
In your case the expression Could you please execute |
I'm using php 7 When I run
|
On my server
$ php -version
PHP 7.0.15 (cli) (built: Jan 19 2017 14:20:34) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
$ php -r "echo (int)max(['2/ 1/']);"
2$
|
Probliem is not in max func. Its in ls command which return one line instead of multiple lines(each folder on one line) please, try to run ls and get list. |
@Elfet yeah, it's my fault, the bug is in wrong exploding this string with all folders. |
$ ls -1 -td */
vendor/
tests/
storage/
routes/
resources/
public/
database/
config/
bootstrap/
app/
$
On 18/02/2017 22:21, Maxim Kuznetsov
wrote:
ls -1 -td */
|
@filipponeri Looks fine. Could you please replace ps. sorry for asking it. I can't reproduce it on my environment, so I need your help. |
Hi, But when I deploy with this fix it didn't work as I expected. |
@franciscomemoli did you try
Did you clear releases dir before new deploy? You should leave only one correct release and clear .dep folder. |
Releases order can be grabbed from |
Fixed |
Thanks!
On 21/02/2017 17:49, Anton Medvedev
wrote:
Fixed
—
You are receiving this because you were mentioned.
Reply to this email directly, view
it on GitHub, or mute
the thread.
{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/deployphp/deployer","title":"deployphp/deployer","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/deployphp/deployer"}},"updates":{"snippets":[{"icon":"PERSON","message":"@elfet in #1004: Fixed"}],"action":{"name":"View Issue","url":"#1004 (comment)"}}}
|
Huh, didn't even realize the naming 1.2.3.4.5 stuff was a side effect of the bug I fixed, as it was my first time using deployer, I figured that was some naming scheme deployer used. I should also note that the code that builds the list of releases limits how many of the most recent releases it will read from the CSV to For example, if your keep_releases is set to 3, it will only look at the most recent 11 releases in the CSV. If you have 20 releases on your server the oldest 9 will never be deleted. The easiest workaround is to set your keep_releases to Now that I think about it, this would be an outright bug for anyone who has lots of releases and later decides they want to reduce them drastically. |
There even simple solution. Ssh to server and drop old releases. I'm thinking about increasing this value:
Yes, this is possible bug. |
Description
the set('keep_releases', 3); command does not appear to work.
Deployer keeps adding directories (with names and in this order: '1', '2' , '1.1' , '1.1.2' , '1.1.2.3' ) without deleting any previous release directories. This results in quickly filling up the disk space.
Apart for this problem, Deploy deploys correctly the new software on the remote web server and does not output any error.
Thank you for your help.
Best regards, Filippo
Running deploy
Steps to reproduce
dep deploy.php
Content of
deploy.php
Output log
With enabled option for verbose output
-vvv
.(this run creates the release directory named 1.1.2.3 )
$ dep deploy -vvv
➤ Executing task deploy:prepare
[staging] > echo $0
[staging] < bash
[staging] > if [ ! -d /home/provrtsp/public_html/promarket11.com ]; then mkdir -p /home/provrtsp/public_html/promarket11.com; fi
[staging] > if [ ! -L /home/provrtsp/public_html/promarket11.com/current ] && [ -d /home/provrtsp/public_html/promarket11.com/current ]; then echo true; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com && if [ ! -d .dep ]; then mkdir .dep; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com && if [ ! -d releases ]; then mkdir releases; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com && if [ ! -d shared ]; then mkdir shared; fi
• done on [staging]
✔ Ok [5s 306ms]
➤ Executing task deploy:release
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [ -h release ]; then echo 'true'; fi)
[staging] > cd /home/provrtsp/public_html/promarket11.com && ([ -d releases ] && [ "$(ls -A releases)" ] && echo "true" || echo "false")
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com && (cd releases && ls -t -d /)
[staging] < 1.1.2/ 1.1/ 2/ 1/
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [ -f .dep/releases ]; then echo "true"; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com && (tail -n 11 .dep/releases)
[staging] < 20170209064323,1
[staging] < 20170209064710,2
[staging] < 20170209065719,1.1
[staging] < 20170209070156,1.1.2
[staging] < 20170209071015,1.1.2
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [ -d /home/provrtsp/public_html/promarket11.com/releases/1 ]; then echo 'true'; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [ -d /home/provrtsp/public_html/promarket11.com/releases/1.1 ]; then echo 'true'; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [ -d /home/provrtsp/public_html/promarket11.com/releases/1.1.2 ]; then echo 'true'; fi)
[staging] < true
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [ -d /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3 ]; then echo 'true'; fi)
[staging] > cd /home/provrtsp/public_html/promarket11.com && (date +"%Y%m%d%H%M%S")
[staging] < 20170209071307
[staging] > cd /home/provrtsp/public_html/promarket11.com && (echo '20170209071307,1.1.2.3' >> .dep/releases)
[staging] > cd /home/provrtsp/public_html/promarket11.com && (mkdir /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3)
[staging] > cd /home/provrtsp/public_html/promarket11.com && (if [[ "$(man ln)" =~ "--relative" ]]; then echo "true"; fi)
[staging] < bash: man: command not found
[staging] > cd /home/provrtsp/public_html/promarket11.com && (ln -nfs /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3 /home/provrtsp/public_html/promarket11.com/release)
• done on [staging]
✔ Ok [8s 97ms]
➤ Executing task deploy:update_code
[staging] > which git
[staging] < /usr/local/bin/git
[staging] > /usr/local/bin/git version
[staging] < git version 2.10.0
[staging] > if [ -h /home/provrtsp/public_html/promarket11.com/release ]; then echo 'true'; fi
[staging] < true
[staging] > readlink /home/provrtsp/public_html/promarket11.com/release
[staging] < /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3
[staging] > /usr/local/bin/git clone -b master --recursive -q git@gitlab.com:nerifil/mp.git /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3 2>&1
• done on [staging]
✔ Ok [17s 415ms]
➤ Executing task deploy:vendors
[staging] > if hash composer 2>/dev/null; then echo 'true'; fi
[staging] < true
[staging] > which composer
[staging] < /opt/cpanel/composer/bin/composer
[staging] > cd /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3 && /opt/cpanel/composer/bin/composer install --verbose --prefer-dist --no-progress --no-interaction --no-dev --optimize-autoloader
[staging] < Loading composer repositories with package information
[staging] < Installing dependencies from lock file
[staging] < Dependency resolution completed in 0.001 seconds
[staging] < Analyzed 135 packages to resolve dependencies
[staging] < Analyzed 328 rules to resolve dependencies
[staging] < - Installing symfony/process (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing knplabs/knp-snappy (0.4.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing vlucas/phpdotenv (v2.4.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/polyfill-mbstring (v1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/var-dumper (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/translation (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/routing (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/http-foundation (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/event-dispatcher (v3.2.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing psr/log (1.0.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/debug (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/http-kernel (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/finder (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/console (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing swiftmailer/swiftmailer (v5.4.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing paragonie/random_compat (v2.0.4)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing ramsey/uuid (3.5.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing nikic/php-parser (v3.0.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing jakub-onderka/php-console-color (0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing jakub-onderka/php-console-highlighter (v0.3.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing dnoegel/php-xdg-base-dir (0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing psy/psysh (v0.8.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing nesbot/carbon (1.22.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing mtdowling/cron-expression (v1.2.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing monolog/monolog (1.22.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing league/flysystem (1.0.34)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/polyfill-util (v1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/polyfill-php56 (v1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing jeremeamia/superclosure (2.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing doctrine/inflector (v1.1.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing classpreloader/classpreloader (3.1.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing laravel/framework (v5.3.30)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing barryvdh/laravel-snappy (v0.3.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/yaml (v3.2.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/dom-crawler (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/css-selector (v3.1.10)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing symfony/browser-kit (v3.2.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/diff (1.4.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/recursion-context (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/exporter (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/comparator (1.2.4)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/version (2.0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/resource-operations (1.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/object-enumerator (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/global-state (1.1.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/environment (2.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-text-template (1.2.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing doctrine/instantiator (1.0.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/phpunit-mock-objects (3.4.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-timer (1.0.8)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-file-iterator (1.4.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing sebastian/code-unit-reverse-lookup (1.0.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-token-stream (1.4.9)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/php-code-coverage (4.0.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing webmozart/assert (1.2.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpdocumentor/reflection-common (1.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpdocumentor/type-resolver (0.2.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpdocumentor/reflection-docblock (3.1.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpspec/prophecy (v1.6.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing myclabs/deep-copy (1.6.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing phpunit/phpunit (5.7.12)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing psr/http-message (1.0.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing guzzlehttp/psr7 (1.3.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing guzzlehttp/promises (v1.3.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing guzzlehttp/guzzle (6.2.2)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing facebook/webdriver (1.3.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing behat/gherkin (v4.4.5)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing codeception/codeception (2.2.9)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing h4cc/wkhtmltoimage-amd64 (0.12.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing h4cc/wkhtmltopdf-amd64 (0.12.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing laravelcollective/html (v5.3.1)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing pusher/pusher-php-server (2.6.3)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < - Installing stripe/stripe-php (v4.4.0)
[staging] < Loading from cache
[staging] < Extracting archive
[staging] <
[staging] < Generating optimized autoload files
[staging] < Warning: Ambiguous class resolution, "App\Exceptions\Handler" was found in both "/home/provrtsp/public_html/promarket11.com/releases/1.1.2.3/app/Exceptions/HandlerNO.php" and "/home/provrtsp/public_html/promarket11.com/releases/1.1.2.3/app/Exceptions/Handler.php", the first will be used.
[staging] < > post-install-cmd: Illuminate\Foundation\ComposerScripts::postInstall
[staging] < > post-install-cmd: php artisan optimize
[staging] < Generating optimized class loader
[staging] < Compiling common classes
• done on [staging]
✔ Ok [110s 895ms]
➤ Executing task deploy:symlink
[staging] > if [[ "$(man mv)" =~ "--no-target-directory" ]]; then echo "true"; fi
[staging] < bash: man: command not found
[staging] > cd /home/provrtsp/public_html/promarket11.com && ln -nfs /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3 current
[staging] > cd /home/provrtsp/public_html/promarket11.com && rm release
• done on [staging]
✔ Ok [1s 637ms]
➤ Executing task cleanup
[staging] > cd /home/provrtsp/public_html/promarket11.com && if [ -e release ]; then rm release; fi
[staging] > cd /home/provrtsp/public_html/promarket11.com && if [ -h release ]; then rm release; fi
• done on [staging]
✔ Ok [919ms]
➤ Executing task environment
[staging] > cp /home/provrtsp/shared/env /home/provrtsp/public_html/promarket11.com/releases/1.1.2.3/.env
• done on [staging]
✔ Ok [5s 43ms]
➤ Executing task success
✔ Ok [0ms]
➤ Executing task composer_rerun
[staging] > cd /home/provrtsp/public_html/promarket11.com/current; php ~/composer.phar install
[staging] < Loading composer repositories with package information
[staging] < Installing dependencies (including require-dev) from lock file
[staging] < - Installing pimple/pimple (v3.0.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing phpseclib/phpseclib (2.0.4)
[staging] < Loading from cache
[staging] <
[staging] < - Installing psr/cache (1.0.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing symfony/cache (v3.2.3)
[staging] < Loading from cache
[staging] <
[staging] < - Installing symfony/expression-language (v3.2.3)
[staging] < Loading from cache
[staging] <
[staging] < - Installing evenement/evenement (v2.0.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/stream (v0.4.6)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/promise (v2.5.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/event-loop (v0.4.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/socket (v0.4.6)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/cache (v0.4.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/dns (v0.4.3)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/socket-client (v0.4.6)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/http-client (v0.4.15)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/http (v0.4.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/child-process (v0.4.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing react/react (v0.4.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing elfet/pure (v2.0.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing deployer/deployer (v4.2.1)
[staging] < Loading from cache
[staging] <
[staging] < - Installing deployer/phar-update (v2.0.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing fzaninotto/faker (v1.6.0)
[staging] < Loading from cache
[staging] <
[staging] < - Installing hamcrest/hamcrest-php (v1.2.2)
[staging] < Loading from cache
[staging] <
[staging] < - Installing mockery/mockery (0.9.7)
[staging] < Loading from cache
[staging] <
[staging] < phpseclib/phpseclib suggests installing ext-libsodium (SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.)
[staging] < symfony/cache suggests installing symfony/polyfill-apcu (For using ApcuAdapter on HHVM)
[staging] < react/event-loop suggests installing ext-event (~1.0)
[staging] < react/event-loop suggests installing ext-libev ()
[staging] < react/event-loop suggests installing ext-libevent (>=0.1.0)
[staging] < react/react suggests installing ext-event (Allows for use of a more performant event-loop implementation.)
[staging] < react/react suggests installing ext-libev (Allows for use of a more performant event-loop implementation.)
[staging] < react/react suggests installing ext-libevent (Allows for use of a more performant event-loop implementation.)
[staging] < Generating autoload files
[staging] < > Illuminate\Foundation\ComposerScripts::postInstall
[staging] < > php artisan optimize
[staging] < Generating optimized class loader
[staging] < Compiling common classes
• done on [staging]
✔ Ok [18s 103ms]
Successfully deployed!
The text was updated successfully, but these errors were encountered: