3c7fdc6a9e
Currently the "routing" playground example fails the e2e tests because it tries to load the OpenSans font using an external HTTP request. External http requests are not allowed (unless explicitly enabled) within Bazel in order to ensure that all targets are built and tested in a hermetic way. In order to work around this issue in a Bazel idiomatic way, we just vendor the fonts in the "third_party" folder. Note that we can technically also enable internet for the RBE host platform, but it's not a best practice for hermeticity. The following syntax would allow us to enable internet for RBE (stated here for tracking) ``` properties: { name: "dockerNetwork" value: "standard" } ``` PR Close #28490 |
||
---|---|---|
.. | ||
BUILD.bazel | ||
LICENSE.txt | ||
OpenSans-Bold.ttf | ||
OpenSans-Light.ttf | ||
OpenSans-Regular.ttf | ||
OpenSans-SemiBold.ttf | ||
open-sans.css |