Skip to content

Commit df6fe2d

Browse files
---
yaml --- r: 8973 b: refs/heads/lesv-patch-1 c: 2cab251 h: refs/heads/master i: 8971: 2ddaaa5
1 parent 503d448 commit df6fe2d

4 files changed

Lines changed: 23 additions & 1 deletion

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ refs/tags/v0.22.0: 18b298fe4bfe8ec2f20b0e0bf7ffdcce5cc3c5fe
6666
refs/heads/vam-google-patch-1: d0c8fee3a4074d0bf7360ce8c4f7f7223d0ee7b9
6767
refs/heads/vam-google-patch-CODEOWNERS: 2ac1616e25229e51d08a984708ef1918f91a35ee
6868
refs/heads/danoscarmike-patch-1: 7342a9916bce4ed00002c7202e2a16c5d46afaea
69-
refs/heads/lesv-patch-1: 90a7e893c867a66a61b87b706b27655f3437e973
69+
refs/heads/lesv-patch-1: 2cab251baa5efaa0b570ef50c91751985c61a151
7070
refs/heads/ml-update-branch: 079dd6610017f5c51b9d1938c12d6d55b61513cf
7171
refs/heads/vkedia-patch-2: 7d8241388a9769a5c069334761b06c7012c878e7
7272
refs/heads/vkedia-patch-3: 4d128043acaa7db9160faf439d2ca6104e8a88cb

branches/lesv-patch-1/.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- run:
4141
name: Run integration tests for google-cloud-compute
4242
command: ./utilities/verify_single_it.sh google-cloud-compute
43+
no_output_timeout: 20m
4344
datastore_it:
4445
working_directory: ~/googleapis
4546
<<: *anchor_docker
@@ -62,6 +63,24 @@ jobs:
6263
- run:
6364
name: Run integration tests for google-cloud-dns
6465
command: ./utilities/verify_single_it.sh google-cloud-dns
66+
firestore_it:
67+
working_directory: ~/googleapis
68+
<<: *anchor_docker
69+
environment:
70+
# Firestore can't be turned on in a project with Datastore turned on,
71+
# so we use a distinct project (and distinct service account) for it
72+
GCLOUD_PROJECT: java-review
73+
GOOGLE_APPLICATION_CREDENTIALS: .circleci/firestore-it-service-account.json
74+
steps:
75+
- checkout
76+
- run:
77+
name: Decrypt credentials
78+
command: |
79+
openssl aes-256-cbc -md sha256 -d -in .circleci/firestore-it-service-account.json.enc \
80+
-out .circleci/firestore-it-service-account.json -k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
81+
- run:
82+
name: Run integration tests for google-cloud-firestore
83+
command: ./utilities/verify_single_it.sh google-cloud-firestore
6584
logging_it:
6685
working_directory: ~/googleapis
6786
<<: *anchor_docker
@@ -136,6 +155,7 @@ workflows:
136155
- bigquery_it
137156
- compute_it
138157
- datastore_it
158+
- firestore_it
139159
- dns_it
140160
- logging_it
141161
- notification_it
Binary file not shown.

branches/lesv-patch-1/utilities/verify_single_it.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ echo "----- building and installing parent pom -----"
2121
mvn -B -N install -DskipTests
2222

2323
echo "----- building and installing shared modules -----"
24+
# storage is present because google-cloud-bigquery and google-cloud-notification depend on it
25+
# pubsub is present because google-cloud-notification depends on it
2426
mvn -B -pl google-cloud-core,google-cloud-core-http,google-cloud-core-grpc,google-cloud-storage,google-cloud-pubsub install -DskipTests
2527

2628
echo "----- running integration tests -----"

0 commit comments

Comments
 (0)