Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Remove default
local = True
flag from fpga_params
As per https://bazel.build/reference/be/general#genrule.local, Bazel normally runs tests with a default of `local = False`. Setting `local = True` as we do by default forces genrule to use the "local" spawn strategy, which disallows remote execution, sandboxing and remote caching. We do not use remote execution, but there is no reason for our FPGA tests to be run without sandboxing or without using remotely cached test results (as opposed to locally cached test results). Bazel will still respect the `cache_test_results` option, and so use of this cache can be overriden. Any tests that need to use opt out of sandboxing features as this originally provided can simply add the `local` tag instead of using this parameter, though this will mean that these tests cannot be remotely cached and thus must be re-run every time if no result is cached locally. Signed-off-by: Alex Jones <[email protected]>
- Loading branch information