Skip to content

Commit

Permalink
fix: speed up CircleCI builds (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
miraleung committed Sep 10, 2020
1 parent 8ffcf0b commit 258706a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
- run:
name: Build targets
command: |
bazel build //...
bazel --batch build //...
- run:
name: Test targets
command: |
bazel test //...
bazel --batch test //... --noshow_progress
- store_test_results:
path: ~/.cache/bazel
google-java-format:
Expand All @@ -27,7 +27,7 @@ jobs:
- run:
name: Java Linter
command: |
bazel build //:google_java_format_verification
bazel --batch build //:google_java_format_verification
license-header:
docker:
- image: circleci/golang:1.13
Expand Down

0 comments on commit 258706a

Please sign in to comment.