This repository was archived by the owner on Apr 7, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252 - run : .kokoro/build.sh
5353 env :
5454 JOB_TYPE : test
55- GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS : true
5655 GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS_PARTITIONED_OPS : true
5756 GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS_FOR_RW : true
57+ units-without-multiplexed-session :
58+ runs-on : ubuntu-latest
59+ strategy :
60+ fail-fast : false
61+ matrix :
62+ java : [ 11, 17, 21 ]
63+ steps :
64+ - uses : actions/checkout@v4
65+ - uses : actions/setup-java@v3
66+ with :
67+ distribution : temurin
68+ java-version : ${{matrix.java}}
69+ - run : java -version
70+ - run : .kokoro/build.sh
71+ env :
72+ JOB_TYPE : test
73+ GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS : false
5874 units-java8 :
5975 # Building using Java 17 and run the tests with Java 8 runtime
6076 name : " units (8)"
@@ -96,6 +112,26 @@ jobs:
96112 GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS : true
97113 GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS_PARTITIONED_OPS : true
98114 GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS_FOR_RW : true
115+ units-without-multiplexed-session8 :
116+ # Building using Java 17 and run the tests with Java 8 runtime
117+ name : " units-with-multiplexed-session (8)"
118+ runs-on : ubuntu-latest
119+ steps :
120+ - uses : actions/checkout@v4
121+ - uses : actions/setup-java@v3
122+ with :
123+ java-version : 8
124+ distribution : temurin
125+ - run : echo "SUREFIRE_JVM_OPT=-Djvm=${JAVA_HOME}/bin/java" >> $GITHUB_ENV
126+ shell : bash
127+ - uses : actions/setup-java@v3
128+ with :
129+ java-version : 17
130+ distribution : temurin
131+ - run : .kokoro/build.sh
132+ env :
133+ JOB_TYPE : test
134+ GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS : false
99135 windows :
100136 runs-on : windows-latest
101137 steps :
You can’t perform that action at this time.
0 commit comments