From cd337652b40395acd52c8ad4b71437e5a4fd960d Mon Sep 17 00:00:00 2001 From: Mridula <66699525+mpeddada1@users.noreply.github.com> Date: Wed, 26 Oct 2022 13:02:11 -0400 Subject: [PATCH] chore: restore missing native image configs (#1038) --- .kokoro/build.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index a4d13e42..f26974a4 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -70,6 +70,16 @@ integration) verify RETURN_CODE=$? ;; +graalvm) + # Run Unit and Integration Tests with Native Image + mvn test -Pnative -Penable-integration-tests + RETURN_CODE=$? + ;; +graalvm17) + # Run Unit and Integration Tests with Native Image + mvn test -Pnative -Penable-integration-tests + RETURN_CODE=$? + ;; samples) SAMPLES_DIR=samples # only run ITs in snapshot/ on presubmit PRs. run ITs in all 3 samples/ subdirectories otherwise.