Skip to content

Commit bdd04b4

Browse files
chore: fix graalvm kokoro builds (#2327)
* chore: fix graalvm build * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * add changes back --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 2d9b518 commit bdd04b4

File tree

4 files changed

+12
-68
lines changed

4 files changed

+12
-68
lines changed

.kokoro/build.sh

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,20 @@ integration)
7474
;;
7575
graalvm)
7676
# Run Unit and Integration Tests with Native Image
77-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
77+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests \
78+
-Dit.test=!ITBigQueryWrite*RetryTest \
79+
-Dsurefire.failIfNoSpecifiedTests=false \
80+
-Dfailsafe.failIfNoSpecifiedTests=false \
81+
test
7882
RETURN_CODE=$?
7983
;;
8084
graalvm17)
8185
# Run Unit and Integration Tests with Native Image
82-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
86+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests \
87+
-Dit.test=!ITBigQueryWrite*RetryTest \
88+
-Dsurefire.failIfNoSpecifiedTests=false \
89+
-Dfailsafe.failIfNoSpecifiedTests=false \
90+
test
8391
RETURN_CODE=$?
8492
;;
8593
samples)

.kokoro/presubmit/graalvm-native-17.cfg

Lines changed: 0 additions & 33 deletions
This file was deleted.

.kokoro/presubmit/graalvm-native.cfg

Lines changed: 0 additions & 33 deletions
This file was deleted.

owlbot.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
".kokoro/nightly/retry_quota.cfg",
3030
".kokoro/nightly/samples.cfg",
3131
".kokoro/presubmit/samples.cfg",
32+
".kokoro/presubmit/graalvm-native-17.cfg",
33+
".kokoro/presubmit/graalvm-native.cfg",
3234
".kokoro/dependencies.sh",
3335
".github/workflows/approve-readme.yaml",
3436
".github/workflows/auto-release.yaml",

0 commit comments

Comments
 (0)