Skip to content
Draft
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d9b0706
chore: Test with Protobuf-Java v4.32 [no need to review]
lqiu96 Aug 26, 2025
c27c94b
chore: Update to Protobuf 4.32.1
lqiu96 Sep 24, 2025
aa3bba6
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 6, 2025
7c7e74e
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 7, 2025
4b1e06a
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 9, 2025
b125a15
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 10, 2025
c46de39
Update protobuf.version to 4.33.0
lqiu96 Oct 21, 2025
b7980c0
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 23, 2025
99fef4b
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 24, 2025
e812750
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 25, 2025
e7c2b00
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 28, 2025
8ffa97a
Merge branch 'main' into PR #2191 to update
lqiu96 Oct 29, 2025
02a1d1a
Merge branch 'main' into PR #2191 to update
lqiu96 Nov 1, 2025
20bedd0
Merge branch 'main' into PR #2191 to update
lqiu96 Nov 15, 2025
013d9ab
Merge branch 'main' into PR #2191 to update
lqiu96 Nov 19, 2025
345f0d0
Merge branch 'main' into PR #2191 to update
lqiu96 Nov 29, 2025
f69bc53
Merge branch 'main' into PR #2191 to update
lqiu96 Dec 5, 2025
fa32b74
Merge branch 'main' into PR #2191 to update
lqiu96 Dec 12, 2025
baf9767
Merge branch 'main' into PR #2191 to update
lqiu96 Dec 17, 2025
a38a1ac
Merge branch 'main' into PR #2191 to update
lqiu96 Dec 18, 2025
0354322
Merge branch 'main' into PR #2191 to update
lqiu96 Dec 19, 2025
5c0362d
Merge branch 'main' into PR #2191 to update
lqiu96 Dec 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .kokoro/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ javadoc)
integration)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Dprotobuf.version=4.33.0 \
-Penable-integration-tests \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand All @@ -83,6 +84,7 @@ integration)
integration-cloud-devel)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Dprotobuf.version=4.33.0 \
-Penable-integration-tests \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand All @@ -97,6 +99,7 @@ integration-cloud-devel)
integration-cloud-staging)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Dprotobuf.version=4.33.0 \
-Penable-integration-tests \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand All @@ -110,13 +113,15 @@ integration-cloud-staging)
;;
graalvm)
# Run Unit and Integration Tests with Native Image.
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**" \
-Dprotobuf.version=4.33.0
RETURN_CODE=$?
;;
graalvmA)
# Run Unit and Integration Tests with Native Image A.

NATIVE_IMAGE_OPTIONS="--strict-image-heap" mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
NATIVE_IMAGE_OPTIONS="--strict-image-heap" mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**" \
-Dprotobuf.version=4.33.0
RETURN_CODE=$?
;;
samples)
Expand Down