Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:

env:
WORKSPACE: DevLog.xcworkspace
SCHEME: DevLog
XCODE_VERSION: latest
SCHEME: DevLogApp
XCODE_VERSION: "26.3"
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}

Expand Down Expand Up @@ -51,6 +51,12 @@ jobs:
sudo xcode-select -s "$XCODE_APP/Contents/Developer"
xcodebuild -version

- name: Set up Tuist
uses: jdx/mise-action@v4
with:
install: true
cache: true

- name: Cache SwiftPM
uses: actions/cache@v5
with:
Expand All @@ -63,6 +69,25 @@ jobs:
restore-keys: |
${{ runner.os }}-spm-

- name: Generate Xcode project with Tuist
shell: bash
run: |
set -euo pipefail

tuist generate --no-open

git diff --exit-code -- \
DevLog.xcworkspace \
Application/DevLogApp/DevLogApp.xcodeproj \
Application/DevLogCore/DevLogCore.xcodeproj \
Application/DevLogData/DevLogData.xcodeproj \
Application/DevLogDomain/DevLogDomain.xcodeproj \
Application/DevLogInfra/DevLogInfra.xcodeproj \
Application/DevLogPersistence/DevLogPersistence.xcodeproj \
Application/DevLogPresentation/DevLogPresentation.xcodeproj \
Widget/DevLogWidgetCore/DevLogWidgetCore.xcodeproj \
Widget/DevLogWidgetExtension/DevLogWidgetExtension.xcodeproj

- name: Select iOS Simulator Runtime (installed)
id: pick_ios
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- develop

env:
SCHEME: DevLog
SCHEME: DevLogApp
RUBY_VERSION: "3.2"
XCODE_VERSION: latest
APP_STORE_TEAM_ID: ${{ secrets.APP_STORE_TEAM_ID }}
Expand Down
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ xcuserdata/
GoogleService-Info.plist
UserInterfaceState.xcuserstate
Breakpoints_v2.xcbkptlist
**/Derived/
**/build/
**/xcuserdata/
ContentView.swift
Expand All @@ -36,6 +37,14 @@ fastlane/logs/
# Build Artifacts
*.ipa
*.dSYM.zip
.package.resolved
.home/
.module-cache/
.swift-module-cache/
.tmp/
.spm/
Tuist/.build/
DevLog.xcworkspace/.tuist-generated

# drawio
*.drawio.bkp
*.drawio.bkp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This reference holds DevLog-specific working rules that should live with the pro
- Prefer Xcode Local MCP for iOS project code changes.
- If Xcode Local MCP is unavailable or fails because of session transport, state that explicitly before using a fallback.
- This repository is workspace-based. Prefer workspace/scheme context over standalone project builds when dependencies cross module projects.
- CI truth lives in `.github/workflows/build.yml`: `DevLog.xcworkspace`, scheme `DevLog`, simulator build, `-resolvePackageDependencies`, `-skipPackagePluginValidation`, and `-skipMacroValidation`.
- CI truth lives in `.github/workflows/build.yml`: select Xcode 26.3, install Tuist with mise, run `tuist generate --no-open`, assert generated Xcode files are clean with `git diff --exit-code`, then build `DevLog.xcworkspace` scheme `DevLog` with `-resolvePackageDependencies`, `-skipPackagePluginValidation`, and `-skipMacroValidation`.
- CI is build validation, not a full test run, unless the workflow changes.
- Avoid unrelated `Package.resolved` churn. Keep lockfile changes only when dependency resolution is the task.

Expand Down
2 changes: 2 additions & 0 deletions .mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tools]
tuist = "4.194.4"
936 changes: 491 additions & 445 deletions Application/DevLogApp/DevLogApp.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "2640"
version = "1.7">
LastUpgradeVersion = "2650"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES"
buildArchitectures = "Automatic">
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
Expand All @@ -15,9 +14,9 @@
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DFD48AFF2DC4D6E2005905C5"
BlueprintIdentifier = "B9946B184E6A28C345727743"
BuildableName = "DevLog.app"
BlueprintName = "DevLog"
BlueprintName = "DevLogApp"
ReferencedContainer = "container:DevLogApp.xcodeproj">
</BuildableReference>
</BuildActionEntry>
Expand All @@ -27,15 +26,14 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
shouldAutocreateTestPlan = "YES">
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
parallelizable = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DF3416442E45F67C00F9312B"
BlueprintIdentifier = "0EDF4BB78A091D2F550FEB0C"
BuildableName = "DevLogAppTests.xctest"
BlueprintName = "DevLogAppTests"
ReferencedContainer = "container:DevLogApp.xcodeproj">
Expand All @@ -57,9 +55,9 @@
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DFD48AFF2DC4D6E2005905C5"
BlueprintIdentifier = "B9946B184E6A28C345727743"
BuildableName = "DevLog.app"
BlueprintName = "DevLog"
BlueprintName = "DevLogApp"
ReferencedContainer = "container:DevLogApp.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
Expand All @@ -74,9 +72,9 @@
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DFD48AFF2DC4D6E2005905C5"
BlueprintIdentifier = "B9946B184E6A28C345727743"
BuildableName = "DevLog.app"
BlueprintName = "DevLog"
BlueprintName = "DevLogApp"
ReferencedContainer = "container:DevLogApp.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
Expand Down

This file was deleted.

This file was deleted.

Loading