From 46d27db6d5950577ca2559db622f1d0f35878f69 Mon Sep 17 00:00:00 2001 From: Jungin Choi <37467592+choijungp@users.noreply.github.com> Date: Wed, 3 Sep 2025 16:23:25 +0900 Subject: [PATCH 1/5] Update build_test.yml --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 85f9bd4..230260f 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -43,6 +43,6 @@ jobs: -workspace Bitnagil.xcworkspace \ -scheme App \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' \ + -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.4' \ clean build | xcpretty From ee63745fcc7f947299fccceded399968a5ab6801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8E=E1=85=AC=E1=84=8C=E1=85=A5=E1=86=BC=E1=84=8B?= =?UTF-8?q?=E1=85=B5=E1=86=AB?= Date: Tue, 27 Jan 2026 16:51:01 +0900 Subject: [PATCH 2/5] =?UTF-8?q?fix:=20ci=20=ED=8C=8C=EC=9D=BC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_test.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index cadd8f7..ffddb6e 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -16,12 +16,8 @@ jobs: - name: Set Xcode version run: sudo xcode-select -s /Applications/Xcode_16.4.app - - name: Install Mise and Tuist - run: | - curl -fsSL https://mise.jdx.dev/install.sh | sh - export PATH="$HOME/.local/bin:$PATH" - mise install tuist - mise use -g tuist + - name: Install Tuist + run: brew install tuist - name: Generate xcconfig run: | @@ -32,9 +28,8 @@ jobs: - name: Generate Xcode project with Tuist run: | - export PATH="$HOME/.local/bin:$PATH" - mise exec -- tuist install - mise exec -- tuist generate --no-open + tuist install + tuist generate --no-open - name: Build with xcodebuild run: | @@ -43,6 +38,5 @@ jobs: -workspace Bitnagil.xcworkspace \ -scheme App \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.4' \ + -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' \ clean build | xcpretty - From aec67123f90f3503ad7f0b29fed35dd9b02ddb6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8E=E1=85=AC=E1=84=8C=E1=85=A5=E1=86=BC=E1=84=8B?= =?UTF-8?q?=E1=85=B5=E1=86=AB?= Date: Tue, 27 Jan 2026 16:57:31 +0900 Subject: [PATCH 3/5] =?UTF-8?q?fix:=20build=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index ffddb6e..10343a7 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -38,5 +38,5 @@ jobs: -workspace Bitnagil.xcworkspace \ -scheme App \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' \ - clean build | xcpretty + -destination 'generic/platform=iOS Simulator' \ + clean build From 6d51863b7da2a00ce8b32741596e7f2fa513254d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8E=E1=85=AC=E1=84=8C=E1=85=A5=E1=86=BC=E1=84=8B?= =?UTF-8?q?=E1=85=B5=E1=86=AB?= Date: Tue, 27 Jan 2026 17:03:07 +0900 Subject: [PATCH 4/5] =?UTF-8?q?test:=20=EC=8B=A4=ED=8C=A8=20=E3=84=B1?= =?UTF-8?q?=E3=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Projects/Presentation/Sources/Home/Model/Routine.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Presentation/Sources/Home/Model/Routine.swift b/Projects/Presentation/Sources/Home/Model/Routine.swift index e66144a..62c327d 100644 --- a/Projects/Presentation/Sources/Home/Model/Routine.swift +++ b/Projects/Presentation/Sources/Home/Model/Routine.swift @@ -49,7 +49,7 @@ extension RoutineEntity { subRoutineCompleted: subRoutineCompleteYn, routineType: RoutineCategoryType(rawValue: recommendedRoutineType ?? ""), isDeleted: routineDeletedYn, - startDate: Date.convertToDate(from: routineStartDate, dateType: .yearMonthDate) ?? Date(), + startDate: Date.convertToDate(from: routineStartDate, dateType: .yearMonthDate), endDate: Date.convertToDate(from: routineEndDate, dateType: .yearMonthDate) ?? Date()) } } From ed30ccdf30d9dbaf3d4e03540240cfbea9f867eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8E=E1=85=AC=E1=84=8C=E1=85=A5=E1=86=BC=E1=84=8B?= =?UTF-8?q?=E1=85=B5=E1=86=AB?= Date: Tue, 27 Jan 2026 17:09:03 +0900 Subject: [PATCH 5/5] =?UTF-8?q?test:=20=EC=84=B1=EA=B3=B5=E3=84=B1?= =?UTF-8?q?=E3=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Projects/Presentation/Sources/Home/Model/Routine.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Presentation/Sources/Home/Model/Routine.swift b/Projects/Presentation/Sources/Home/Model/Routine.swift index 62c327d..e66144a 100644 --- a/Projects/Presentation/Sources/Home/Model/Routine.swift +++ b/Projects/Presentation/Sources/Home/Model/Routine.swift @@ -49,7 +49,7 @@ extension RoutineEntity { subRoutineCompleted: subRoutineCompleteYn, routineType: RoutineCategoryType(rawValue: recommendedRoutineType ?? ""), isDeleted: routineDeletedYn, - startDate: Date.convertToDate(from: routineStartDate, dateType: .yearMonthDate), + startDate: Date.convertToDate(from: routineStartDate, dateType: .yearMonthDate) ?? Date(), endDate: Date.convertToDate(from: routineEndDate, dateType: .yearMonthDate) ?? Date()) } }