Would it be possible to elaborate on this?
I have tried setting up Xcode cloud builds, and on my first attempt the build failed because some of the larger libraries were not present in the repo's remote. ("no such file" error). These libraries were symlinks locally, but navigating to them inside the repository and examining them, they merely showed the local path on my machine where the library was located.
To remedy this, I tried using git lfs. Now the large libraries are stored within the repo via lfs. I can clone the project to my local machine without any issues.
However, when triggering a cloud build, I'm getting the error in the attached image. The library file mentioned is one of the files stored via git lfs, and the clone operation seems to be unable to obtain it.
The error happens during the "fetch source code" phase of the build, and since the documentation on writing custom build scripts only mentions post-clone scripts at the earliest, I'm assuming that custom scripts won't help me here. So I think the issue must be different from the one the OP had.
How can I make Xcode properly clone the files in question?