Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ggj][engx] fix: speed up CircleCI builds #285

Merged
merged 1 commit into from
Sep 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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