From f26e8ac863e5fc764189853723cd3e707fc039a9 Mon Sep 17 00:00:00 2001 From: katre Date: Sun, 17 Mar 2019 17:29:57 -0400 Subject: [PATCH] Use //... to mean "all packages" (#128) Using just "..." makes it appear that the command output is too long and being truncated. --- .bazelci/presubmit.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 13a2227..4087c44 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -5,11 +5,11 @@ tasks: platform: ubuntu1804 bazel: latest build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - - "..." + - "//..." test_flags: - "--test_env=PATH" @@ -18,11 +18,11 @@ tasks: platform: ubuntu1604 bazel: latest build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - - "..." + - "//..." test_flags: - "--test_env=PATH" @@ -31,11 +31,11 @@ tasks: platform: macos bazel: latest build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - - "..." + - "//..." test_flags: - "--test_env=PATH" @@ -44,12 +44,12 @@ tasks: platform: windows bazel: latest build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - "--" - - "..." + - "//..." # Shell tests don't run on windows. - "-//tests:analysis_test_e2e_test" - "-//tests:unittest_e2e_test" @@ -59,11 +59,11 @@ tasks: platform: ubuntu1804 bazel: last_green build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - - "..." + - "//..." test_flags: - "--test_env=PATH" @@ -72,11 +72,11 @@ tasks: platform: ubuntu1604 bazel: last_green build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - - "..." + - "//..." test_flags: - "--test_env=PATH" @@ -85,11 +85,11 @@ tasks: platform: macos bazel: last_green build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - - "..." + - "//..." test_flags: - "--test_env=PATH" @@ -98,12 +98,12 @@ tasks: platform: windows bazel: last_green build_targets: - - "..." + - "//..." build_flags: - "--incompatible_remap_main_repo" test_targets: - "--" - - "..." + - "//..." # Shell tests don't run on windows. - "-//tests:analysis_test_e2e_test" - "-//tests:unittest_e2e_test"