Bazel test failed
Hi, I'm trying to run the code with your instruction, but get stuck with the "bazel test ...".Could you please help me with this? Really appreciate that.

It looks like https://github.com/google/googletest/archive/master.zip doesn't exist anymore, so I have no idea how to deal with that
in tf_mesh_render/WORKPLACE, change pkg to this:
http_archive(
name = "com_google_googletest",
urls = ["https://github.com.cnpmjs.org/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip"],
strip_prefix = "googletest-609281088cfefc76f9d0ce82e1ff6c30cc3591e5",
)
I changed the lines in WORKPLACE file into following:
http_archive( name = "com_google_googletest", urls = ["https://github.com/google/googletest/archive/master.zip"], strip_prefix = "googletest-main", )
This change made to pass first test(kernels:rasterize_triangles_impl_test), which ensured the program running.