Skip to content

Commit

Permalink
Use //... to mean "all packages" (#128)
Browse files Browse the repository at this point in the history
Using just "..." makes it appear that the command output is too long and being truncated.
  • Loading branch information
ngiloq6 authored and laurentlb committed Mar 17, 2019
1 parent 9e87614 commit 492fa32
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ tasks:
platform: ubuntu1804
bazel: latest
build_targets:
- "..."
- "//..."
build_flags:
- "--incompatible_remap_main_repo"
test_targets:
- "..."
- "//..."
test_flags:
- "--test_env=PATH"

Expand All @@ -18,11 +18,11 @@ tasks:
platform: ubuntu1604
bazel: latest
build_targets:
- "..."
- "//..."
build_flags:
- "--incompatible_remap_main_repo"
test_targets:
- "..."
- "//..."
test_flags:
- "--test_env=PATH"

Expand All @@ -31,11 +31,11 @@ tasks:
platform: macos
bazel: latest
build_targets:
- "..."
- "//..."
build_flags:
- "--incompatible_remap_main_repo"
test_targets:
- "..."
- "//..."
test_flags:
- "--test_env=PATH"

Expand All @@ -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"
Expand All @@ -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"

Expand All @@ -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"

Expand All @@ -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"

Expand All @@ -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"
Expand Down

0 comments on commit 492fa32

Please sign in to comment.