Tony Aiuto
Tony Aiuto
Yes. I see the same. We could up the window to make it happen every 2 or 3 days. I made my peace with doing a bazel --clean every so...
I don't want to use a constant, because then I loose the check that I am actually getting the build time. This kind of integration tests against the real world,...
That would work too. I've been trying to keep as much in unit tests as possible, but this is really an integration test that I have tried to squeeze into...
I think it was left unimplemented because there are no tests for it. If you want to send a PR to add a test and enable it, that would be...
#885 added support for tree artifacts. I'm not sure why github didn't cross link that. There still seems to be a little more work for symlinks, so I'm not closing...
Strawman proposal: - pkg_tar should no long auto-unfurl tarballs, and we will not implement a change for that legacy behavior - add pkg_unfurl which takes tar or zip srcs and...
Sorry. That was more a note to @nacl and myself about implementation. Right now pkgtar can take a .tar as input and expand it to the constituent files. That behavior...
Note from eng meeting. This is probably a dup of the pkg_expand issue.
What we do at Google separates the concerns of continuous testing vs. integration. We specify a package as ``` pkg_rpm(name="foo", version="@DATE@", release="@CHANGE@", ...) ``` and let the **_continuous test_** system...
When we get around to this, we might consider if package_file_name expansion could support a default, like a shell escape. So ``` package_file_name = "foo-${COMMIT-head}" ``` What people might really...