Skip to content

Commit

Permalink
fix: upgrade native image plugin to 0.9.14 to unblock graalvm 22.2 up…
Browse files Browse the repository at this point in the history
…date (#998)
  • Loading branch information
mpeddada1 committed Sep 29, 2022
1 parent 272ceaf commit e5ed330
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .kokoro/build.sh
Expand Up @@ -70,13 +70,13 @@ integration)
RETURN_CODE=$?
;;
graalvm)
# Run Unit and Integration Tests with Native Image. Use native-maven-plugin until https://github.com/graalvm/native-build-tools/issues/279 is fixed.
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.11 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
# Run Unit and Integration Tests with Native Image.
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.14 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
RETURN_CODE=$?
;;
graalvm17)
# Run Unit and Integration Tests with Native Image. Use native-maven-plugin 0.9.11 until https://github.com/graalvm/native-build-tools/issues/279 is fixed.
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.11 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
# Run Unit and Integration Tests with Native Image.
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative-0.9.14 -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
RETURN_CODE=$?
;;
samples)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -351,7 +351,7 @@

<profiles>
<profile>
<id>native-0.9.11</id>
<id>native-0.9.14</id>

<dependencies>

Expand Down Expand Up @@ -391,7 +391,7 @@
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>0.9.11</version>
<version>0.9.14</version>
<extensions>true</extensions>
<executions>
<execution>
Expand Down

0 comments on commit e5ed330

Please sign in to comment.