Adding Model Artifacts in Pull Requests
Model artifacts have the potential to be very large, and we should avoid committing large files directly to Git.
If your model’s files are small enough (<100KB in a given directory), then you may add them directly to Git in a PR to master.
Otherwise, you should add the large files to RobotLocomotion/models. Please do not commit files that are generally small, like *.sdf or *.urdf files, in RobotLocomotion/models; instead, please commit those directly.
Before you decide to submit models, please ensure that you have tests that will need them. Do not submit a PR that adds models but has zero intent to use them, as Drake is not a model repository.
See below for the suggested workflow.
Develop Changes Locally
- Clone
RobotLocomotion/modelslocally - Create a Git branch in your local checkouts of both
modelsanddrake. - Update
drake/tools/workspace/models/repository.bzlto point to yourmodelscheckout usinggithub_archive(..., local_repository_override = <path>). - Update
drake/tools/workspace/models/files.bzlto incorporate the models you want. - Update
drake/tools/workspace/models/package.BUILD.bazelto export the models. - Ensure that you use
forward_filesto make the files available inside the Drake bazel workspace. For an example, see drake/manipulation/models/ycb/BUILD.bazel. - Ensure your tests pass under
bazel test.
Submit Changes in a Pull Request
- Push your changes to your fork of
RobotLocomotion/models. Make a PR. - Update
drake/tools/workspace/models/models/repository.bzlto use the commit you pushed. - Submit a PR to Drake, and add a self-blocking discussion thread, such as “
Working temporary SHA1 until the models PR <LINK> is merged.”, where<LINK>references your models PR. - Get review on your Drake PR first. Once it is generally approved, then request review for your
modelsPR. - Once both PRs are approved:
- Merge your
modelsPR. - Update
drake/tools/workspace/models/repository.bzlto the latest merge commit on master forRobotLocomotion/models. - Merge your
drakePR.
- Merge your