From 224acb9b630a34a387320ab68f03ba407e4a08b4 Mon Sep 17 00:00:00 2001 From: Jin Date: Sun, 26 May 2019 20:25:48 -0400 Subject: [PATCH] Add .bazelignore so that we can run bazel test //... (#153) --- .bazelci/presubmit.yml | 8 ++++---- .bazelignore | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 .bazelignore diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 481261b61..9798a60e9 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -2,22 +2,22 @@ platforms: ubuntu1604: test_targets: - - "//tests/..." + - "//..." ubuntu1804: test_targets: - "--" - - "//tests/..." + - "//..." # These tests are currently incompatible with OpenJDK 11. - "-//tests/integration:ArtifactExclusionsTest" - "-//tests/integration:NeverlinkTest" - "-//tests/integration:UnsafeSharedCacheTest" macos: test_targets: - - "//tests/..." + - "//..." windows: test_targets: - "--" - - "//tests/..." + - "//..." # rules_kotlin is not tested / does not work on Windows. # https://github.com/bazelbuild/rules_kotlin/issues/179 # https://github.com/bazelbuild/rules_kotlin/blob/master/.bazelci/presubmit.yml diff --git a/.bazelignore b/.bazelignore new file mode 100644 index 000000000..1c08b66ea --- /dev/null +++ b/.bazelignore @@ -0,0 +1,2 @@ +examples/ +third_party/bazel_json/test \ No newline at end of file