From c640bcc1ca1b3f73f38e50e572856047d1111e57 Mon Sep 17 00:00:00 2001 From: LEE YOU BIN Date: Sat, 28 Jun 2025 21:19:58 +0900 Subject: [PATCH] =?UTF-8?q?feat(DEV-CI)=20:=20GraalVM=20=EC=A3=BC=EC=84=9D?= =?UTF-8?q?=20=ED=95=B4=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/DEV-CI.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/DEV-CI.yml b/.github/workflows/DEV-CI.yml index bd1949ef..2e59670f 100644 --- a/.github/workflows/DEV-CI.yml +++ b/.github/workflows/DEV-CI.yml @@ -33,13 +33,12 @@ jobs: java-version: '21' distribution: 'temurin' - # GraalVM 네이티브 이미지 빌드를 위한 주석 처리된 설정 - # - name: Set up GraalVM JDK 21 with native-image - # uses: graalvm/setup-graalvm@v1.1.1 - # with: - # distribution: 'graalvm-community' - # version: '23.1.0' - # java-version: '21' + - name: Set up GraalVM JDK 21 with native-image + uses: graalvm/setup-graalvm@v1.1.1 + with: + distribution: 'graalvm-community' + version: '23.1.0' + java-version: '21' - name: Gradle 캐시 설정 uses: actions/cache@v4 @@ -60,10 +59,9 @@ jobs: - name: 테스트 프로필로 Gradle 빌드 및 테스트 실행 run: ./gradlew build - # GraalVM 네이티브 이미지 빌드를 위한 주석 처리된 단계 - # - name: Native Image Compile (Fail-safe) - # continue-on-error: true - # run: | - # echo "::group::GraalVM Native Image Build" - # ./gradlew nativeCompile --info --stacktrace - # echo "::endgroup::" + - name: Native Image Compile (Fail-safe) + continue-on-error: true + run: | + echo "::group::GraalVM Native Image Build" + ./gradlew nativeCompile --info --stacktrace + echo "::endgroup::"