From 55f8f7f00bf6e5027d9efa650472982e6caef6e6 Mon Sep 17 00:00:00 2001 From: jchrys Date: Sat, 17 Feb 2024 02:59:33 +0900 Subject: [PATCH] Ensure GraalVM Native Build Compatibility Motivation: Ensure GraalVM Native Build Compatibility Modifications: Add Native build test Result: Ensured GraalVM Native Build Compatibility --- .github/workflows/ci-graalvm-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-graalvm-tests.yml b/.github/workflows/ci-graalvm-tests.yml index 4a30ff9be..015e8a908 100644 --- a/.github/workflows/ci-graalvm-tests.yml +++ b/.github/workflows/ci-graalvm-tests.yml @@ -42,5 +42,5 @@ jobs: - name: Build and run native image run: | - ${{ github.workspace }}/mvnw package - ${{ github.workspace }}/test-native-image/target/test-native-image \ No newline at end of file + ./mvnw package + ./test-native-image/target/test-native-image \ No newline at end of file