Skip to content
Draft
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
aa0ce19
chore: Test with Protobuf-Java v4.29.4
lqiu96 Jun 26, 2025
439267e
Merge branch 'main' into protobuf-ci-v4294
lqiu96 Jul 16, 2025
b844d7b
Merge branch 'main' into protobuf-ci-v4294
lqiu96 Jul 24, 2025
2a58b5c
Merge branch 'main' into protobuf-ci-v4294
lqiu96 Aug 15, 2025
8c24921
Merge branch 'main' into protobuf-ci-v4294
lqiu96 Aug 26, 2025
2b0fcdd
Merge branch 'main' into protobuf-ci-v4294
lqiu96 Sep 10, 2025
0509374
Merge branch 'main' into protobuf-ci-v4294
lqiu96 Sep 24, 2025
ec4d107
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 6, 2025
cd29150
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 7, 2025
8e36d1e
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 9, 2025
da4aa9b
chore: generate libraries at Thu Oct 9 03:28:06 UTC 2025
cloud-java-bot Oct 9, 2025
404cd87
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 10, 2025
f789eb1
chore: generate libraries at Fri Oct 10 03:28:04 UTC 2025
cloud-java-bot Oct 10, 2025
06a133f
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 11, 2025
23f2c85
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 14, 2025
d0f65f1
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 15, 2025
a57e7dd
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 18, 2025
4586eb4
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 23, 2025
76a56f7
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 24, 2025
798940a
Merge branch 'main' into PR #3928 to update
lqiu96 Oct 30, 2025
ef95543
Merge branch 'main' into PR #3928 to update
lqiu96 Nov 1, 2025
5fa9419
Merge branch 'main' into PR #3928 to update
lqiu96 Nov 4, 2025
ca7582c
Merge branch 'main' into PR #3928 to update
lqiu96 Nov 7, 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
23 changes: 22 additions & 1 deletion .kokoro/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ integration)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Penable-integration-tests \
-Dprotobuf.version=4.29.4 \
-Djava.net.preferIPv4Stack=true \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand All @@ -104,10 +105,27 @@ integration)
verify
RETURN_CODE=$?
;;
integration-regular-sessions)
integration-directpath-enabled)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Penable-integration-tests \
-Dprotobuf.version=4.29.4 \
-Djava.net.preferIPv4Stack=true \
-DtrimStackTrace=false \
-Dclirr.skip=true \
-Denforcer.skip=true \
-Dmaven.main.skip=true \
-Dspanner.testenv.instance=projects/span-cloud-testing/instances/spanner-java-client-directpath \
-Dspanner.gce.config.project_id=span-cloud-testing \
-fae \
verify
RETURN_CODE=$?
;;
integration-multiplexed-sessions-enabled)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Penable-integration-tests \
-Dprotobuf.version=4.29.4 \
-Djava.net.preferIPv4Stack=true \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand Down Expand Up @@ -138,6 +156,7 @@ integration-cloud-devel)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Penable-integration-tests \
-Dprotobuf.version=4.29.4 \
-Djava.net.preferIPv4Stack=true \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand All @@ -154,6 +173,7 @@ integration-cloud-devel-directpath-enabled)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Penable-integration-tests \
-Dprotobuf.version=4.29.4 \
-Djava.net.preferIPv4Stack=true \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand All @@ -170,6 +190,7 @@ integration-cloud-staging|integration-cloud-staging-directpath-enabled)
mvn -B ${INTEGRATION_TEST_ARGS} \
-ntp \
-Penable-integration-tests \
-Dprotobuf.version=4.29.4 \
-Djava.net.preferIPv4Stack=true \
-DtrimStackTrace=false \
-Dclirr.skip=true \
Expand Down