From f8fc2e8c8ad744b2e4a952ab87862a8a41c0df6b Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Mon, 25 Jul 2022 13:55:09 -0400 Subject: [PATCH 1/3] ci: run ITNightlyBigqueryTest with native image compilation as nightly job --- .kokoro/build.sh | 8 ++++++ .kokoro/nightly/graalvm-native-17.cfg | 38 +++++++++++++++++++++++++++ .kokoro/nightly/graalvm-native.cfg | 38 +++++++++++++++++++++++++++ 3 files changed, 84 insertions(+) create mode 100644 .kokoro/nightly/graalvm-native-17.cfg create mode 100644 .kokoro/nightly/graalvm-native.cfg diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 4b1c5de2b..fc4557221 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -90,6 +90,14 @@ graalvm17) mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Dtest=ITBigQueryTest -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; +nightly-graalvm) + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Dtest=ITNightlyBigQueryTest -Pnative -Penable-integration-tests test + RETURN_CODE=$? + ;; +nightly-graalvm17) + mvn -B ${INTEGRATION_TEST_ARGS} -ntp --Dtest=ITNightlyBigQueryTest -Pnative -Penable-integration-tests test + RETURN_CODE=$? + ;; samples) SAMPLES_DIR=samples # only run ITs in snapshot/ on presubmit PRs. run ITs in all 3 samples/ subdirectories otherwise. diff --git a/.kokoro/nightly/graalvm-native-17.cfg b/.kokoro/nightly/graalvm-native-17.cfg new file mode 100644 index 000000000..15ed86292 --- /dev/null +++ b/.kokoro/nightly/graalvm-native-17.cfg @@ -0,0 +1,38 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/graalvm17" +} + +env_vars: { + key: "JOB_TYPE" + value: "nightly-graalvm17" +} + +# TODO: remove this after we've migrated all tests and scripts +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_CLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "ENABLE_FLAKYBOT" + value: "true" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "secret_manager/java-it-service-account" +} + +env_vars: { + key: "SECRET_MANAGER_KEYS" + value: "java-it-service-account" +} \ No newline at end of file diff --git a/.kokoro/nightly/graalvm-native.cfg b/.kokoro/nightly/graalvm-native.cfg new file mode 100644 index 000000000..57c1e3511 --- /dev/null +++ b/.kokoro/nightly/graalvm-native.cfg @@ -0,0 +1,38 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-kokoro-resources/graalvm" +} + +env_vars: { + key: "JOB_TYPE" + value: "nightly-graalvm" +} + +# TODO: remove this after we've migrated all tests and scripts +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_CLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "ENABLE_FLAKYBOT" + value: "true" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "secret_manager/java-it-service-account" +} + +env_vars: { + key: "SECRET_MANAGER_KEYS" + value: "java-it-service-account" +} From 8e4b45a1a99d72684017c1ef1102c42481e393ef Mon Sep 17 00:00:00 2001 From: Mridula Peddada Date: Mon, 25 Jul 2022 13:56:10 -0400 Subject: [PATCH 2/3] fix typo --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index fc4557221..6ede96a21 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -95,7 +95,7 @@ nightly-graalvm) RETURN_CODE=$? ;; nightly-graalvm17) - mvn -B ${INTEGRATION_TEST_ARGS} -ntp --Dtest=ITNightlyBigQueryTest -Pnative -Penable-integration-tests test + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Dtest=ITNightlyBigQueryTest -Pnative -Penable-integration-tests test RETURN_CODE=$? ;; samples) From 8c9eb1eb6318566884fa309cad27149da5384081 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Mon, 25 Jul 2022 17:59:00 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20po?= =?UTF-8?q?st-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b3ff9d2e..d2ee7a3f3 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,13 @@ implementation 'com.google.cloud:google-cloud-bigquery' If you are using Gradle without BOM, add this to your dependencies: ```Groovy -implementation 'com.google.cloud:google-cloud-bigquery:2.13.8' +implementation 'com.google.cloud:google-cloud-bigquery:2.14.0' ``` If you are using SBT, add this to your dependencies: ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.13.8" +libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.14.0" ``` ## Authentication