mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-02 02:07:27 +00:00
- Upgraded the Bazel BuildTool to the latest version (8.2.1). - Updated the `tflm-ci` Docker image and pushed the new tag (0.6.1) to the `ghcr.io/tflm-bot/tflm-ci registry`. - Updated the WORKSPACE to load `rules_cc` and `rules_shell` explicitly - Ran `buildifier` to ensure all BUILD files to have all the fixes. BUG=Clean-up
15 lines
311 B
Text
15 lines
311 B
Text
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
|
|
|
cc_test(
|
|
name = "cc_deps_link_test",
|
|
size = "small",
|
|
srcs = [
|
|
"cc_deps_link_test.cc",
|
|
],
|
|
tags = [
|
|
"nomsan", # avoid, because tensorflow library fails msan
|
|
],
|
|
deps = [
|
|
"@tensorflow_cc_deps//:cc_library",
|
|
],
|
|
)
|