Skip to content

Commit 720a8bf

Browse files
authored
---
yaml --- r: 9061 b: refs/tags/v0.34.0 c: bf31760 h: refs/heads/master i: 9059: 0dc2cdd
1 parent 6cdd9c6 commit 720a8bf

1,443 files changed

Lines changed: 347642 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

[refs]

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,4 @@ refs/heads/revert-2954-mrschmidt-emptymerge: 30e0cd24f2ab1cc4a364b9a56e556aa8b4c
9696
refs/heads/revert-2955-mrschmidt-equals: c118b70b7ff7418e36792df0cea87a9d72a1b646
9797
refs/tags/v0.32.0: 184c219c7a7d38bd8146e3a4d35f0972a1d24a10
9898
refs/tags/v0.33.0: d491ea5c3f4be85985f4484ed280103f4b0715aa
99+
refs/tags/v0.34.0: bf31760a31a66acb239322a70dcd03dbe1d0c7ca

tags/v0.34.0/.checkstyle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
4+
<fileset name="Java source files" enabled="true" check-config-name="Google Checks" local="false">
5+
<file-match-pattern match-pattern=".*\.java" include-pattern="true"/>
6+
</fileset>
7+
</fileset-config>

tags/v0.34.0/.circleci/config.yml

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
version: 2.0
2+
3+
anchor_docker: &anchor_docker
4+
docker:
5+
- image: circleci/openjdk:8-jdk
6+
environment:
7+
TERM: dumb
8+
9+
anchor_auth_vars: &anchor_auth_vars
10+
environment:
11+
GCLOUD_PROJECT: gcloud-devel
12+
GOOGLE_APPLICATION_CREDENTIALS: .circleci/it-service-account.json
13+
14+
anchor_run_decrypt: &anchor_run_decrypt
15+
name: Decrypt credentials
16+
command: |
17+
openssl aes-256-cbc -md sha256 -d -in .circleci/it-service-account.json.enc \
18+
-out .circleci/it-service-account.json -k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
19+
20+
jobs:
21+
bigquery_it:
22+
working_directory: ~/googleapis
23+
<<: *anchor_docker
24+
<<: *anchor_auth_vars
25+
steps:
26+
- checkout
27+
- run:
28+
<<: *anchor_run_decrypt
29+
- run:
30+
name: Run integration tests for google-cloud-bigquery
31+
command: ./utilities/verify_single_it.sh google-cloud-bigquery
32+
compute_it:
33+
working_directory: ~/googleapis
34+
<<: *anchor_docker
35+
<<: *anchor_auth_vars
36+
steps:
37+
- checkout
38+
- run:
39+
<<: *anchor_run_decrypt
40+
- run:
41+
name: Run integration tests for google-cloud-compute
42+
command: ./utilities/verify_single_it.sh google-cloud-compute
43+
no_output_timeout: 20m
44+
datastore_it:
45+
working_directory: ~/googleapis
46+
<<: *anchor_docker
47+
<<: *anchor_auth_vars
48+
steps:
49+
- checkout
50+
- run:
51+
<<: *anchor_run_decrypt
52+
- run:
53+
name: Run integration tests for google-cloud-datastore
54+
command: ./utilities/verify_single_it.sh google-cloud-datastore
55+
dns_it:
56+
working_directory: ~/googleapis
57+
<<: *anchor_docker
58+
<<: *anchor_auth_vars
59+
steps:
60+
- checkout
61+
- run:
62+
<<: *anchor_run_decrypt
63+
- run:
64+
name: Run integration tests for google-cloud-dns
65+
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
84+
logging_it:
85+
working_directory: ~/googleapis
86+
<<: *anchor_docker
87+
<<: *anchor_auth_vars
88+
steps:
89+
- checkout
90+
- run:
91+
<<: *anchor_run_decrypt
92+
- run:
93+
name: Run integration tests for google-cloud-logging
94+
command: ./utilities/verify_single_it.sh google-cloud-logging
95+
notification_it:
96+
working_directory: ~/googleapis
97+
<<: *anchor_docker
98+
<<: *anchor_auth_vars
99+
steps:
100+
- checkout
101+
- run:
102+
<<: *anchor_run_decrypt
103+
- run:
104+
name: Run integration tests for google-cloud-notification
105+
command: ./utilities/verify_single_it.sh google-cloud-notification
106+
pubsub_it:
107+
working_directory: ~/googleapis
108+
<<: *anchor_docker
109+
<<: *anchor_auth_vars
110+
steps:
111+
- checkout
112+
- run:
113+
<<: *anchor_run_decrypt
114+
- run:
115+
name: Run integration tests for google-cloud-pubsub
116+
command: ./utilities/verify_single_it.sh google-cloud-pubsub
117+
spanner_it:
118+
working_directory: ~/googleapis
119+
<<: *anchor_docker
120+
<<: *anchor_auth_vars
121+
steps:
122+
- checkout
123+
- run:
124+
<<: *anchor_run_decrypt
125+
- run:
126+
name: Run integration tests for google-cloud-spanner
127+
command: ./utilities/verify_single_it.sh google-cloud-spanner
128+
speech_it:
129+
working_directory: ~/googleapis
130+
<<: *anchor_docker
131+
<<: *anchor_auth_vars
132+
steps:
133+
- checkout
134+
- run:
135+
<<: *anchor_run_decrypt
136+
- run:
137+
name: Run integration tests for google-cloud-speech
138+
command: ./utilities/verify_single_it.sh google-cloud-speech
139+
storage_it:
140+
working_directory: ~/googleapis
141+
<<: *anchor_docker
142+
<<: *anchor_auth_vars
143+
steps:
144+
- checkout
145+
- run:
146+
<<: *anchor_run_decrypt
147+
- run:
148+
name: Run integration tests for google-cloud-storage
149+
command: ./utilities/verify_single_it.sh google-cloud-storage
150+
translate_it:
151+
working_directory: ~/googleapis
152+
<<: *anchor_docker
153+
<<: *anchor_auth_vars
154+
steps:
155+
- checkout
156+
- run:
157+
<<: *anchor_run_decrypt
158+
- run:
159+
name: Run integration tests for google-cloud-translate
160+
command: ./utilities/verify_single_it.sh google-cloud-translate
161+
162+
workflows:
163+
version: 2
164+
build:
165+
jobs:
166+
- bigquery_it
167+
- compute_it
168+
- datastore_it
169+
- firestore_it
170+
- dns_it
171+
- logging_it
172+
- notification_it
173+
- pubsub_it
174+
- spanner_it
175+
- speech_it
176+
- storage_it
177+
- translate_it
2.33 KB
Binary file not shown.
2.3 KB
Binary file not shown.

tags/v0.34.0/.eclipse-pmd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<eclipse-pmd xmlns="http://acanda.ch/eclipse-pmd/0.8" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://acanda.ch/eclipse-pmd/0.8 http://acanda.ch/eclipse-pmd/eclipse-pmd-0.8.xsd">
3+
<analysis enabled="true" />
4+
<rulesets>
5+
<ruleset name="Project PMD settings" ref="pmd.xml" refcontext="project" />
6+
</rulesets>
7+
</eclipse-pmd>

tags/v0.34.0/.github/CODEOWNERS

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Code owners file.
2+
# This file controls who is tagged for review for any given pull request.
3+
4+
# For anything not explicitly taken by someone else.
5+
* @pongad
6+
# Owners per module.
7+
google-cloud-bigquery/src/* @vam-google @tswast
8+
google-cloud-bigtable/src/* @igorbernstein2
9+
google-cloud-compute/src/* @andreamlin
10+
google-cloud-contrib/src/* @pongad @jean-philippe-martin
11+
google-cloud-core-grpc/src/* @pongad
12+
google-cloud-core-http/src/* @pongad
13+
google-cloud-core/src/* @pongad
14+
google-cloud-datastore/src/* @neozwu @vam-google
15+
google-cloud-dep-verification/src/* @pongad
16+
google-cloud-dlp/src/* @neozwu
17+
google-cloud-dns/src/* @pongad
18+
google-cloud-errorreporting/src/* @pongad
19+
google-cloud-examples/src/* @pongad
20+
google-cloud-firestore/src/* @schmidt-sebastian
21+
google-cloud-language/src/* @pongad
22+
google-cloud-logging/src/* @saicheems @andreamlin @jabubake
23+
google-cloud-monitoring/src/* @pongad
24+
google-cloud-pubsub/src/* @pongad
25+
google-cloud-resourcemanager/src/* @pongad
26+
google-cloud-spanner/src/* @vam-google @vkedia
27+
google-cloud-speech/src/* @vam-google
28+
google-cloud-storage/src/* @andreamlin @neozwu
29+
google-cloud-testing/src/* @vam-google
30+
google-cloud-trace/src/* @pongad
31+
google-cloud-translate/src/* @andreamlin @saicheems
32+
google-cloud-util/src/* @pongad
33+
google-cloud-video-intelligence/src/* @vam-google
34+
google-cloud-vision/src/* @vam-google
35+
google-cloud/src/* @pongad
36+

tags/v0.34.0/.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.gitignore
2+
3+
# Packages
4+
dist
5+
build
6+
bin
7+
var
8+
sdist
9+
target
10+
11+
# Unit test / coverage reports
12+
.coverage
13+
.tox
14+
nosetests.xml
15+
16+
# Translations
17+
*.mo
18+
19+
# Mr Developer
20+
.mr.developer.cfg
21+
.project
22+
.pydevproject
23+
*.iml
24+
.idea
25+
.settings
26+
.DS_Store
27+
.classpath
28+
29+
# Built documentation
30+
docs/
31+
32+
33+
# Wheel directory used in Travis builds.
34+
gcloud-java-wheels/
35+
src/test/resources/gcd-head.zip
36+
src/test/resources/gcd-v1beta2-rev1-2.1.1.zip
37+
38+
# API key file containing value of GOOGLE_API_KEY for integration tests
39+
api_key
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
filesCopiedToWebInfLib=
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
activeContentFilterList=*.makefile,makefile,*.Makefile,Makefile,Makefile.*,*.mk,MANIFEST.MF,.project
2+
addNewLine=true
3+
convertActionOnSaave=AnyEdit.CnvrtTabToSpaces
4+
eclipse.preferences.version=1
5+
fixLineDelimiters=false
6+
ignoreBlankLinesWhenTrimming=false
7+
inActiveContentFilterList=
8+
javaTabWidthForJava=true
9+
org.eclipse.jdt.ui.editor.tab.width=2
10+
projectPropsEnabled=false
11+
removeTrailingSpaces=true
12+
replaceAllSpaces=false
13+
replaceAllTabs=false
14+
saveAndAddLine=false
15+
saveAndConvert=false
16+
saveAndFixLineDelimiters=false
17+
saveAndTrim=true
18+
useModulo4Tabs=false

0 commit comments

Comments
 (0)