You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
So I spent couple of hours debugging why the deploy works differently when launched from local vs from CI.
Turned out the docker image I was using on CI was missing rsync.
As rsync is listed in dependencies I would expected some error, but instead shipit uses tar:
# when no rsync is installed
Copy project to remote servers.
"copy" method is deprecated, please use "copyToRemote", "copyFromRemote", "scpCopyToRemote" or "scpCopyFromRemote". It will break in v5.0.0.
Running "mkdir -p /var/apps/myapp/releases/20210721062223" on host "207.154.247.89".
Running "cd /var/apps/myapp/releases/20210721062223 && tar -xzf tmp-398FN6d3fh21UK.tar.gz" on host "207.154.247.89".
Running "cd /var/apps/myapp/releases/20210721062223 && rm tmp-398FN6d3fh21UK.tar.gz" on host "207.154.247.89".
Finished copy.
# when rsync is installed
Copy project to remote servers.
"copy" method is deprecated, please use "copyToRemote", "copyFromRemote", "scpCopyToRemote" or "scpCopyFromRemote". It will break in v5.0.0.
Copy "/tmp/tmp-338fW2hhc27GEJS/" to "[email protected]:/var/apps/myapp/releases/20210721063312" via rsync
Finished copy.
When tar is used, the release is deployed not directly in "current" dir, but in "current/tmp-sdgf2342".
I'm not sure if this is a bug, but perhaps this will save someone some time.
The text was updated successfully, but these errors were encountered:
I experience the same issue as @jankulma mentioned the directory layout seems to be different based on the tooling used to copy the code to the remote server:
As a workaround, I installed rsync in the CI and move on, however, it looks like there is an option that controls this behavior, but I didn't try it out.
Nevertheless, it seems a little bit counter-intuitive that copying the source code with or without rsync produce a different layout, I'm more than happy to submit a patch, just wonder if this behavior is intended or not, additionally, I wonder if it would make sense to raise an error if rsync is not available when the copy method is set to rsync rather than fallback to another method?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
So I spent couple of hours debugging why the deploy works differently when launched from local vs from CI.
Turned out the docker image I was using on CI was missing rsync.
As rsync is listed in dependencies I would expected some error, but instead shipit uses tar:
When tar is used, the release is deployed not directly in "current" dir, but in "current/tmp-sdgf2342".
I'm not sure if this is a bug, but perhaps this will save someone some time.
The text was updated successfully, but these errors were encountered: