From ff2f37def965f5528252b35c6bc7e9a31f8dfa9f Mon Sep 17 00:00:00 2001 From: Dimo-2562 Date: Fri, 17 Oct 2025 02:29:34 +0900 Subject: [PATCH 1/4] =?UTF-8?q?chore:=20gradle=20=EC=BA=90=EC=8B=B1=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 1 + 1 file changed, 1 insertion(+) create mode 100644 gradle.properties diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..50b13654 --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +org.gradle.caching=true From e316d48b871ef14f65e7ba0270d76c8164a7ee3d Mon Sep 17 00:00:00 2001 From: Dimo-2562 Date: Fri, 17 Oct 2025 02:30:42 +0900 Subject: [PATCH 2/4] =?UTF-8?q?chore:=20=EB=A1=9C=EC=BB=AC=20=EB=B9=8C?= =?UTF-8?q?=EB=93=9C=20=EC=86=8D=EB=8F=84=20=ED=96=A5=EC=83=81=EC=9D=84=20?= =?UTF-8?q?=EC=9C=84=ED=95=B4=20gradle=20=EB=8D=B0=EB=AA=AC=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=B6=94=EA=B0=80,=20CI=EC=97=90=EC=84=9C=EB=8A=94?= =?UTF-8?q?=20=EC=9D=98=EB=AF=B8=20=EC=97=86=EC=9C=BC=EB=AF=80=EB=A1=9C=20?= =?UTF-8?q?no=20daemon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- gradle.properties | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5504e897..1ef9527e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: run: chmod +x ./gradlew - name: Build with Gradle - run: ./gradlew clean build + run: ./gradlew build --no-daemon - name: Upload build artifact uses: actions/upload-artifact@v4 diff --git a/gradle.properties b/gradle.properties index 50b13654..f8eba2fc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1,2 @@ org.gradle.caching=true +org.gradle.daemon=true \ No newline at end of file From 058d228006f699a2df058eb06756eecc1da7c7dd Mon Sep 17 00:00:00 2001 From: Dimo-2562 Date: Fri, 17 Oct 2025 02:32:04 +0900 Subject: [PATCH 3/4] =?UTF-8?q?improve:=20java=20=EC=BA=90=EC=8B=9C=20?= =?UTF-8?q?=EB=8C=80=EC=8B=A0=20gradle=20=EC=BA=90=EC=8B=B1=EC=9D=84=20?= =?UTF-8?q?=EC=82=AC=EC=9A=A9=ED=95=B4=20=EC=BA=90=EC=8B=B1=20=ED=9A=A8?= =?UTF-8?q?=EC=9C=A8=20=ED=96=A5=EC=83=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ef9527e..3e8ba723 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,9 @@ jobs: with: java-version: '17' distribution: 'temurin' - cache: 'gradle' + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v3 - name: Grant execute permission for gradlew run: chmod +x ./gradlew From b0b8c393bbc4fefe98e616ff1089822a1bc5e230 Mon Sep 17 00:00:00 2001 From: Dimo-2562 Date: Fri, 17 Oct 2025 02:32:56 +0900 Subject: [PATCH 4/4] =?UTF-8?q?improve:=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EA=B0=80=20=EB=B6=80=EC=9E=AC=ED=95=98=EB=AF=80=EB=A1=9C=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=8A=A4=ED=82=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e8ba723..e1dbb8ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: run: chmod +x ./gradlew - name: Build with Gradle - run: ./gradlew build --no-daemon + run: ./gradlew build -x test --no-daemon - name: Upload build artifact uses: actions/upload-artifact@v4