From b0fc0ebfcca43e6c24f27528775cdb5ee058d290 Mon Sep 17 00:00:00 2001 From: Prashant Mishra Date: Thu, 21 Jul 2022 10:13:37 +0530 Subject: [PATCH 1/2] Exclude testConnectionClose from GraalVM17 --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 089ca0e23..70ccb9a95 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -87,7 +87,7 @@ graalvm) ;; graalvm17) # Run Unit and Integration Tests with Native Image. Skip Arrow tests until https://github.com/googleapis/java-bigquery/issues/2060 is fixed. - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder+testMultipleRuns+testIterateAndOrderDefaultConnSettings, IT*, *ClientTest" + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder+testMultipleRuns+testIterateAndOrderDefaultConnSettings+testConnectionClose, IT*, *ClientTest" RETURN_CODE=$? ;; samples) From 3d75519676d68d060a416a6d930c1c1b647f17f2 Mon Sep 17 00:00:00 2001 From: Prashant Mishra Date: Thu, 21 Jul 2022 11:37:59 +0530 Subject: [PATCH 2/2] Exclude Arrow Tests from GraalVM --- .kokoro/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 70ccb9a95..ce8c37ec1 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -81,8 +81,8 @@ nightly-it) RETURN_CODE=$? ;; graalvm) - # Run Unit and Integration Tests with Native Image - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test + # Run Unit and Integration Tests with Native Image. Skip Arrow tests until https://github.com/googleapis/java-bigquery/issues/2060 is fixed. + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=!com.google.cloud.bigquery.it.ITBigQueryTest#testBQResultSetPaginationSlowQuery+testReadAPIConnectionMultiClose+testReadAPIIterationAndOrder, !com.google.cloud.bigquery.it.ITNightlyBigQueryTest#testIterateAndOrder+testMultipleRuns+testIterateAndOrderDefaultConnSettings+testConnectionClose, IT*, *ClientTest" RETURN_CODE=$? ;; graalvm17)