aboutsummaryrefslogtreecommitdiff
path: root/.bazelci
diff options
context:
space:
mode:
authorkatre <katre@henchmonkey.org>2019-03-17 17:29:57 -0400
committerLaurent Le Brun <laurentlb@gmail.com>2019-03-17 22:29:57 +0100
commitf26e8ac863e5fc764189853723cd3e707fc039a9 (patch)
tree775977f86d285a9285f4d513fbd6015db1c76aab /.bazelci
parentb2b4471332abdbf8979c89ca5e2cbb4f3a2bdc0f (diff)
downloadbazel-skylib-f26e8ac863e5fc764189853723cd3e707fc039a9.tar.gz
Use //... to mean "all packages" (#128)
Using just "..." makes it appear that the command output is too long and being truncated.
Diffstat (limited to '.bazelci')
-rw-r--r--.bazelci/presubmit.yml32
1 files 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"