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: use StringObjectValue for AnnotationNode's description #389

Merged
merged 16 commits into from
Oct 10, 2020
Merged
Prev Previous commit
Next Next commit
fix: update circleci config
  • Loading branch information
miraleung authored Oct 9, 2020
commit 59ef6689061b088d09980908a8ce8054367caa64
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
gapic-generator-java-tests:
working_directory: /tmp/
environment:
TEST_REPORTS_DIR: /tmp/workspace/bazel/reports/gapic-generator-java
TEST_REPORTS_DIR: ~/.cache/bazel
BAZEL_VERSION: 3.5.1
PYTHON_VERSION: 3.5.2
machine: true
Expand All @@ -28,6 +28,7 @@ jobs:
name: Make reports directory
command: |
mkdir -p ${TEST_REPORTS_DIR}
echo "Test reports will be stored in ${TEST_REPORTS_DIR}"
- run:
name: Build targets for gapic-generator-java
command: |
Expand All @@ -40,9 +41,9 @@ jobs:
bazel --batch test //src/test/... --noshow_progress
find . -type f -regex ".*/bazel-testlogs/.*xml" -exec cp {} ${TEST_REPORTS_DIR} \;
- store_test_results:
path: bazel/reports/gapic-generator-java
path: ~/.cache/bazel
- store_artifacts:
path: bazel/reports/gapic-generator-java
path: ~/.cache/bazel
google-java-format:
docker:
- image: l.gcr.io/google/bazel
Expand Down