Merge pull request #188 from fmeum/tests-ci
Enable `//tests/...` in CI
diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml
index 5e9f9a6..8d7899d 100644
--- a/.bazelci/presubmit.yml
+++ b/.bazelci/presubmit.yml
@@ -17,6 +17,7 @@
- "//examples/my_c_compile:all"
- "//examples/write_cc_toolchain_cpu:all"
- "//tools/migration:all"
+ - "//tests/..."
test_flags:
- "--test_timeout=120"
test_targets:
@@ -29,6 +30,7 @@
- "//examples/my_c_compile:all"
- "//examples/write_cc_toolchain_cpu:all"
- "//tools/migration:all"
+ - "//tests/..."
buildifier:
version: latest
diff --git a/tests/system_library/BUILD b/tests/system_library/BUILD
index 5990b35..abc1392 100644
--- a/tests/system_library/BUILD
+++ b/tests/system_library/BUILD
@@ -7,4 +7,7 @@
"//cc:system_library.bzl",
"@bazel_tools//tools/bash/runfiles",
],
+ target_compatible_with = [
+ "@platforms//os:linux",
+ ],
)