I'm trying to manage the deployment pipelines of a very large project, made of several hundreds of files. I would like to upload only the ones that have been changed in the last commit. I made a pipeline using atlassian/rsync-deploy but since it is run in a container, the files are moved in the container and they all have a newer date than those in the destination, and so all of them are transferred by rsync. Is it possible to move only the one that have changed?
The best way is to use flag -c and -u and it will update to u only commited files.
EXTRA_ARGS: '-c --update ${BITBUCKET_CLONE_DIR}/'
Hey @stefano_vita . What you want is possible with a little workaround. The pipe supports the EXTRA_ARGS parameter which you can you to pass arbitrary rsync cli options. So you might need to take the following steps in your pipeline:
git diff --name-only HEAD HEAD~1
git diff --name-only HEAD HEAD~1 > change-files.txt
EXTRA_ARGS: "--include-from='changed-files.txt'" --exclude="*"
Note that you also need to explicitly exclude all files and include only the changed ones.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If what you're actually focused on is getting the files from this build onto the machine then I'd suggest using --ignore-times instead of --include-from / --exclude. You can't be sure your deploying HEAD on top of HEAD~1, especially if you're using builds from multiple branches.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
--ignore-times doesn't worked for me :( could you provide maybe full line with EXTRA_ARGS as example?
I would greatly appreciate :)
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.