Skip to content

Commit 8e4852f

Browse files
committed
exclude jdbc from kokoro
1 parent 95c71fc commit 8e4852f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.kokoro/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ javadoc)
6161
;;
6262
integration)
6363
mvn -B ${INTEGRATION_TEST_ARGS} \
64+
-p "!google-cloud-bigquery-jdbc" \
6465
-ntp \
6566
-Penable-integration-tests \
6667
-DtrimStackTrace=false \
@@ -72,7 +73,11 @@ integration)
7273
;;
7374
graalvm)
7475
# Run Unit and Integration Tests with Native Image
75-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test
76+
mvn -B ${INTEGRATION_TEST_ARGS} \
77+
-p "!google-cloud-bigquery-jdbc" \
78+
-ntp \
79+
-Pnative \
80+
test
7681
RETURN_CODE=$?
7782
;;
7883
samples)

0 commit comments

Comments
 (0)