Skip to content

Commit 170a043

Browse files
authored
chore: add a CI target to run emulator integration tests using multiplexed sessions. (#3029)
1 parent 5768919 commit 170a043

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,23 @@ jobs:
3636
- run: .kokoro/build.sh
3737
env:
3838
JOB_TYPE: test
39+
units-with-multiplexed-session:
40+
runs-on: ubuntu-latest
41+
strategy:
42+
fail-fast: false
43+
matrix:
44+
java: [ 11, 17, 21 ]
45+
steps:
46+
- uses: actions/checkout@v4
47+
- uses: actions/setup-java@v3
48+
with:
49+
distribution: temurin
50+
java-version: ${{matrix.java}}
51+
- run: java -version
52+
- run: .kokoro/build.sh
53+
env:
54+
JOB_TYPE: test
55+
GOOGLE_CLOUD_SPANNER_ENABLE_MULTIPLEXED_SESSIONS: true
3956
units-java8:
4057
# Building using Java 17 and run the tests with Java 8 runtime
4158
name: "units (8)"

0 commit comments

Comments
 (0)