. I have the following configuration file:
core.workflow(
name = "scudo",
mode = "ITERATIVE",
origin = git.github_origin(
ref = "master",
),
destination = git.github_destination(
url = "g...@github.com:petrhosek/scudo.git",
),
origin_files = glob(["compiler-rt/lib/scudo/standalone/**"]),
destination_files = glob(["**"]),
transformations = [
core.move("compiler-rt/lib/scudo/standalone", ""),
],
)
After this, Copybara just sits there and does nothing. I left it running for a day and didn't get any other output. I also tried running Copybara in the verbose and I see the following output:
Executing [git '--git-dir=/home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit' describe -- 531f9e92d4d06d5cb1f250754c68e7d3b420df50]
fatal: No tags can describe '531f9e92d4d06d5cb1f250754c68e7d3b420df50'.
Try --always, or create some tags.
Command 'git' finished in 00:00.159. Process exited with status 128
Executing [git '--git-dir=/home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit' describe --always -- 531f9e92d4d06d5cb1f250754c68e7d3b420df50]
531f9e92d4d
Command 'git' finished in 00:00.155. (No exit status)
Executing [git init --bare]
Reinitialized existing Git repository in /home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit/
Command 'git' finished in 00:00.004. (No exit status)
Executing [git config --local credential.helper store]
Command 'git' finished in 00:00.002. (No exit status)
Executing [git '--git-dir=/home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit' describe -- 31c8a9d41a2cdd7322ea8f04049ab8d583f2e694]
fatal: No tags can describe '31c8a9d41a2cdd7322ea8f04049ab8d583f2e694'.
Try --always, or create some tags.
Command 'git' finished in 00:00.163. Process exited with status 128
Executing [git '--git-dir=/home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit' describe --always -- 31c8a9d41a2cdd7322ea8f04049ab8d583f2e694]
31c8a9d41a2
Command 'git' finished in 00:00.155. (No exit status)
Executing [git init --bare]
Reinitialized existing Git repository in /home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit/
Command 'git' finished in 00:00.004. (No exit status)
Executing [git config --local credential.helper store]
Command 'git' finished in 00:00.002. (No exit status)
Executing [git '--git-dir=/home/phosek/copybara/cache/git_repos/https%3A%2F%2Fgithub%2Ecom%2Fllvm%2Fllvm-project%2Egit' describe -- fb972add4f91522dd418734318554ca704c4cd8e]
fatal: No tags can describe 'fb972add4f91522dd418734318554ca704c4cd8e'.
Try --always, or create some tags.
Command 'git' finished in 00:00.156. Process exited with status 128
This just seems to be repeated over and over without any further progress.
Does anyone see any issue with my configuration? Is there anything else I could try to debug this?