Skip to content

Commit 065ae78

Browse files
feat: add build scripts for native image testing in Java 17 (#1440) (#2057)
Source-Link: googleapis/synthtool@505ce5a Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:2567a120ce90fadb6201999b87d649d9f67459de28815ad239bce9ebfaa18a74
1 parent b2099e6 commit 065ae78

File tree

3 files changed

+37
-4
lines changed

3 files changed

+37
-4
lines changed

.github/.OwlBot.lock.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16-
digest: sha256:fc52b202aa298a50a12c64efd04fea3884d867947effe2fa85382a246c09e813
17-
# created: 2022-04-06T16:30:03.627422514Z
16+
digest: sha256:2567a120ce90fadb6201999b87d649d9f67459de28815ad239bce9ebfaa18a74
17+
# created: 2022-05-19T15:12:45.278246753Z
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Configure the docker image for kokoro-trampoline.
4+
env_vars: {
5+
key: "TRAMPOLINE_IMAGE"
6+
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm17"
7+
}
8+
9+
env_vars: {
10+
key: "JOB_TYPE"
11+
value: "graalvm17"
12+
}
13+
14+
# TODO: remove this after we've migrated all tests and scripts
15+
env_vars: {
16+
key: "GCLOUD_PROJECT"
17+
value: "gcloud-devel"
18+
}
19+
20+
env_vars: {
21+
key: "GOOGLE_CLOUD_PROJECT"
22+
value: "gcloud-devel"
23+
}
24+
25+
env_vars: {
26+
key: "GOOGLE_APPLICATION_CREDENTIALS"
27+
value: "secret_manager/java-it-service-account"
28+
}
29+
30+
env_vars: {
31+
key: "SECRET_MANAGER_KEYS"
32+
value: "java-it-service-account"
33+
}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ implementation 'com.google.cloud:google-cloud-bigquery'
5959
If you are using Gradle without BOM, add this to your dependencies
6060

6161
```Groovy
62-
implementation 'com.google.cloud:google-cloud-bigquery:2.11.1'
62+
implementation 'com.google.cloud:google-cloud-bigquery:2.11.2'
6363
```
6464

6565
If you are using SBT, add this to your dependencies
6666

6767
```Scala
68-
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.11.1"
68+
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.11.2"
6969
```
7070

7171
## Authentication

0 commit comments

Comments
 (0)